From 2f0b10179dc4e4534f2f63530871534c19ea834b Mon Sep 17 00:00:00 2001 From: "cbiesinger%web.de" Date: Thu, 14 Sep 2006 06:07:51 +0000 Subject: [PATCH] addressing reviewer comments git-svn-id: svn://10.0.0.236/trunk@211375 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/suite/browser/nsBrowserStatusHandler.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/suite/browser/nsBrowserStatusHandler.js b/mozilla/suite/browser/nsBrowserStatusHandler.js index 70579230762..beed142847b 100644 --- a/mozilla/suite/browser/nsBrowserStatusHandler.js +++ b/mozilla/suite/browser/nsBrowserStatusHandler.js @@ -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");