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:
parent
5758472d2f
commit
51181f6a5d
1
src/controls.js
vendored
1
src/controls.js
vendored
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user