Bug 315001 Account Central should disable F8 r=Mnyromyr

This commit is contained in:
neil%parkwaycc.co.uk 2005-11-24 13:21:46 +00:00
Родитель 269fba4a9e
Коммит 9feebd2a16
1 изменённых файлов: 2 добавлений и 0 удалений

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

@ -575,6 +575,7 @@ function ShowAccountCentral()
document.getElementById("threadpane-splitter").collapsed = true;
gSearchBox.collapsed = true;
GetThreadTree().collapsed = true;
document.getElementById("key_toggleMessagePane").setAttribute("disabled", "true");
document.getElementById("accountCentralBox").collapsed = false;
window.frames["accountCentralPane"].location.href = acctCentralPage;
if (!IsFolderPaneCollapsed())
@ -597,6 +598,7 @@ function HideAccountCentral()
{
window.frames["accountCentralPane"].location.href = "about:blank";
document.getElementById("accountCentralBox").collapsed = true;
document.getElementById("key_toggleMessagePane").removeAttribute("disabled");
GetThreadTree().collapsed = false;
gSearchBox.collapsed = false;
var threadPaneSplitter = document.getElementById("threadpane-splitter");