Work around for bug #9921. Windows of size zero are ignore on Linux right now.

This commit is contained in:
slamm%netscape.com 1999-08-19 21:59:37 +00:00
Родитель 3a6cd8fce9
Коммит a912337b34
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -44,7 +44,7 @@ function toggle_open_close() {
if (is_sidebar_open) if (is_sidebar_open)
{ {
// Close it // Close it
sidebar.setAttribute('style','width: 0px'); sidebar.setAttribute('style','visibility: hidden; width: 1px');
sidebar.setAttribute('src','about:blank'); sidebar.setAttribute('src','about:blank');
grippy.setAttribute('open',''); grippy.setAttribute('open','');
@ -53,8 +53,9 @@ function toggle_open_close() {
} }
else else
{ {
// Open it dump("Open it\n");
sidebar.setAttribute('style', 'width:' + sidebar_width + 'px');
sidebar.setAttribute('style', 'visibility: visible;width:' + sidebar_width + 'px');
sidebar.setAttribute('src', sidebar_uri); sidebar.setAttribute('src', sidebar_uri);
grippy.setAttribute('open','true'); grippy.setAttribute('open','true');