fixing bug 152895 - msg header pane loses focus. r=ducarroz, sr=mscott

This commit is contained in:
ssu%netscape.com 2002-06-25 23:46:43 +00:00
Родитель eafee4dcd2
Коммит 0468bc653c
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -177,11 +177,6 @@ function enableEditableFields()
var gComposeRecyclingListener = {
onClose: function() {
//Reset focus to avoid undesirable visual effect when reopening the winodw
var identityElement = document.getElementById("msgIdentity");
if (identityElement)
identityElement.focus();
//Reset recipients and attachments
awResetAllRows();
RemoveAllAttachments();
@ -221,6 +216,11 @@ var gComposeRecyclingListener = {
},
onReopen: function(params) {
//Reset focus to avoid undesirable visual effect when reopening the winodw
var identityElement = document.getElementById("msgIdentity");
if (identityElement)
identityElement.focus();
InitializeGlobalVariables();
window.editorShell.contentWindow.focus();
enableEditableFields();