1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-02 09:11:54 +02:00

Removes loadingSpinner when seek is complete

This commit is contained in:
Caio Ariede 2012-07-26 10:08:55 -03:00
parent 5758472d2f
commit 51181f6a5d

1
src/controls.js vendored
View File

@ -237,6 +237,7 @@ _V_.LoadingSpinner = _V_.Component.extend({
player.on("canplay", _V_.proxy(this, this.hide));
player.on("canplaythrough", _V_.proxy(this, this.hide));
player.on("playing", _V_.proxy(this, this.hide));
player.on("seeked", _V_.proxy(this, this.hide));
player.on("seeking", _V_.proxy(this, this.show));
player.on("error", _V_.proxy(this, this.show));