addressing reviewer comments

git-svn-id: svn://10.0.0.236/trunk@211375 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cbiesinger%web.de 2006-09-14 06:07:51 +00:00
parent d55de5a1cc
commit 2f0b10179d

View File

@ -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");