This commit is contained in:
cbiesinger%web.de 2004-02-08 16:03:39 +00:00
Родитель 23f80cd9ba
Коммит 7cd81ec975
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -187,7 +187,7 @@ nsBrowserStatusHandler.prototype =
this.startDocumentLoad(aRequest);
// Show the progress meter
this.statusPanel.removeAttribute("hidden");
this.statusPanel.hidden = false;
// Turn the throbber on.
this.throbberElement.setAttribute("busy", "true");
@ -247,7 +247,7 @@ nsBrowserStatusHandler.prototype =
}
// Turn the progress meter and throbber off.
this.statusPanel.setAttribute("hidden", "true");
this.statusPanel.hidden = true;
this.statusMeter.value = 0; // be sure to clear the progress bar
this.throbberElement.removeAttribute("busy");