Bug 387232 - Collapsed folder pane disappears after restart, r=philipp

This commit is contained in:
michael.buettner%sun.com 2007-08-28 11:41:08 +00:00
Родитель ab8d4ce17e
Коммит b4452c4f47
1 изменённых файлов: 13 добавлений и 0 удалений

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

@ -349,6 +349,19 @@ function ltnOnLoad(event)
}
modeToolbox.addEventListener("DOMAttrModified", onModified, false);
// To make sure the folder pane doesn't disappear without any possibility
// to get it back, we need to reveal it when the mode box is collapsed.
function modeBoxAttrModified(event) {
if (event.attrName == "collapsed") {
document.getElementById("folderPaneBox")
.removeAttribute("collapsed");
}
}
document.getElementById("ltnModeBox").addEventListener("DOMAttrModified",
modeBoxAttrModified,
true);
ltnInitializeMode();
gMiniMonthLoading = true;