Bug 317949: hideMessage should default to hiding the message for selectedBrowser, r=mconnor

This commit is contained in:
gavin@gavinsharp.com 2007-08-21 22:00:52 -07:00
Родитель dc45528854
Коммит 827f75e0f1
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -266,11 +266,12 @@
<parameter name="aTopBottom"/>
<body>
<![CDATA[
var browser = aBrowser || this.mCurrentBrowser;
if (aTopBottom != "both")
this.getMessageForBrowser(aBrowser, aTopBottom).hidden = true;
this.getMessageForBrowser(browser, aTopBottom).hidden = true;
else {
this.getMessageForBrowser(aBrowser, "top").hidden = true;
this.getMessageForBrowser(aBrowser, "bottom").hidden = true;
this.getMessageForBrowser(browser, "top").hidden = true;
this.getMessageForBrowser(browser, "bottom").hidden = true;
}
]]>
</body>