Fix for 153220. Back out the patch of bug 144141 (a dup of bug 123719). r=naving, sr=mscott.

This commit is contained in:
cavin%netscape.com 2002-06-24 22:20:10 +00:00
Родитель caebe93d57
Коммит b035c065e8
1 изменённых файлов: 0 добавлений и 19 удалений

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

@ -695,27 +695,8 @@ function UpgradeFolderPaneUI()
}
}
// This is a workaround fix for bug 144141 since it's too risky to change code
// to load the thread pane window with msgs when folder pane is collapsed/closed
// at startup (since this has never worked before). The workaround is to force
// folder pane open (with default width) at startup if it was collapsed.
function ForceFolderPaneOpen()
{
if (! sidebar_is_collapsed())
return false;
var sidebar_box = document.getElementById('sidebar-box');
var sidebar_splitter = document.getElementById('sidebar-splitter');
sidebar_box.removeAttribute('collapsed');
sidebar_box.removeAttribute('width'); // use default width
sidebar_splitter.removeAttribute('state');
return true;
}
function OnLoadFolderPane()
{
ForceFolderPaneOpen();
UpgradeFolderPaneUI();
var folderUnreadCol = document.getElementById("folderUnreadCol");