Modified EditorStart/Stop/RunLog() methods to call contentWindow.focus().

This commit is contained in:
kin%netscape.com 1999-08-04 18:38:11 +00:00
Родитель aba28a7363
Коммит 35354a1269
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -690,6 +690,7 @@ function EditorStartLog()
fs = EditorGetScriptFileSpec();
editorShell.StartLogging(fs);
contentWindow.focus();
fs = null;
}
@ -697,6 +698,7 @@ function EditorStartLog()
function EditorStopLog()
{
editorShell.StopLogging();
contentWindow.focus();
}
function EditorRunLog()
@ -704,6 +706,7 @@ function EditorRunLog()
var fs;
fs = EditorGetScriptFileSpec();
EditorExecuteScript(fs);
contentWindow.focus();
}
function EditorDocumentLoaded()