Bug 698940 - Remove throbber from HTML5 <audio>. r=dolske

This commit is contained in:
Jared Wein 2011-11-21 13:24:36 -08:00
Родитель e27b30345b
Коммит 9272383f45
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -347,6 +347,11 @@
this.video.networkState == this.video.NETWORK_LOADING))
show = true;
// Explicitly hide the status fader if this
// is audio only until bug 619421 is fixed.
if (this.isAudioOnly)
show = false;
this.log("Status overlay: seeking=" + this.video.seeking +
" error=" + this.video.error + " readyState=" + this.video.readyState +
" paused=" + this.video.paused + " ended=" + this.video.ended +