diff --git a/compare/compare.html b/compare/compare.html index a1f1c57a2..d60e950ca 100644 --- a/compare/compare.html +++ b/compare/compare.html @@ -43,7 +43,8 @@ diff --git a/src/controls.js b/src/controls.js index a0cd065b9..bf502b316 100644 --- a/src/controls.js +++ b/src/controls.js @@ -188,7 +188,11 @@ _V_.LoadingSpinner = _V_.Component.extend({ player.addEvent("seeking", _V_.proxy(this, this.show)); player.addEvent("error", _V_.proxy(this, this.show)); - player.addEvent("stalled", _V_.proxy(this, this.show)); + + // Not showing spinner on stalled any more. Browsers may stall and then not trigger any events that would remove the spinner. + // Checked in Chrome 16 and Safari 5.1.2. http://help.videojs.com/discussions/problems/883-why-is-the-download-progress-showing + // player.addEvent("stalled", _V_.proxy(this, this.show)); + player.addEvent("waiting", _V_.proxy(this, this.show)); },