Fix for bug 112534. Remove collapse grippies.

r=caillon, sr=jag
This commit is contained in:
varga%netscape.com 2007-01-14 05:31:41 +00:00
Родитель 9bdd4cd70e
Коммит 2a89cf0bf2
1 изменённых файлов: 2 добавлений и 4 удалений

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

@ -57,12 +57,10 @@ var FullScreen =
if (els[i].getAttribute("fullscreentoolbar") == "true") {
this.setToolbarButtonMode(els[i], aShow ? "" : "small");
} else {
// use moz-collapsed so it doesn't persist hidden/collapsed,
// so that new windows don't have missing toolbars
if (aShow)
els[i].removeAttribute("moz-collapsed");
els[i].removeAttribute("collapsed");
else
els[i].setAttribute("moz-collapsed", "true");
els[i].setAttribute("collapsed", "true");
}
}