Fix stuck loading spinner on IE

This commit is contained in:
calzoneman 2015-07-01 23:59:21 -07:00
parent c422fa65fc
commit 9db9856a4e
2 changed files with 10 additions and 1 deletions

View file

@ -536,12 +536,15 @@
return sendVideoUpdate();
}
});
return _this.player.on('play', function() {
_this.player.on('play', function() {
_this.paused = false;
if (CLIENT.leader) {
return sendVideoUpdate();
}
});
return _this.player.on('seeked', function() {
return $('.vjs-waiting').removeClass('vjs-waiting');
});
});
};
})(this));