зеркало из https://github.com/mozilla/pjs.git
Modified EditorStart/Stop/RunLog() methods to call contentWindow.focus().
This commit is contained in:
Родитель
aba28a7363
Коммит
35354a1269
|
@ -690,6 +690,7 @@ function EditorStartLog()
|
||||||
|
|
||||||
fs = EditorGetScriptFileSpec();
|
fs = EditorGetScriptFileSpec();
|
||||||
editorShell.StartLogging(fs);
|
editorShell.StartLogging(fs);
|
||||||
|
contentWindow.focus();
|
||||||
|
|
||||||
fs = null;
|
fs = null;
|
||||||
}
|
}
|
||||||
|
@ -697,6 +698,7 @@ function EditorStartLog()
|
||||||
function EditorStopLog()
|
function EditorStopLog()
|
||||||
{
|
{
|
||||||
editorShell.StopLogging();
|
editorShell.StopLogging();
|
||||||
|
contentWindow.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
function EditorRunLog()
|
function EditorRunLog()
|
||||||
|
@ -704,6 +706,7 @@ function EditorRunLog()
|
||||||
var fs;
|
var fs;
|
||||||
fs = EditorGetScriptFileSpec();
|
fs = EditorGetScriptFileSpec();
|
||||||
EditorExecuteScript(fs);
|
EditorExecuteScript(fs);
|
||||||
|
contentWindow.focus();
|
||||||
}
|
}
|
||||||
|
|
||||||
function EditorDocumentLoaded()
|
function EditorDocumentLoaded()
|
||||||
|
|
Загрузка…
Ссылка в новой задаче