зеркало из https://github.com/mozilla/gecko-dev.git
One more followup change to the fix for bug 69070. Make sure to set the appType on the root docshell in editor.js.
This commit is contained in:
Родитель
dc602ccba1
Коммит
f9f9f04078
|
@ -538,7 +538,11 @@ function SetFocusOnStartup()
|
|||
|
||||
function EditorStartup()
|
||||
{
|
||||
GetCurrentEditorElement().docShell.appType =
|
||||
var ds = GetCurrentEditorElement().docShell;
|
||||
var root = ds.QueryInterface(Components.interfaces.nsIDocShellTreeItem).
|
||||
rootTreeItem.QueryInterface(Components.interfaces.nsIDocShell);
|
||||
|
||||
root.QueryInterface(Components.interfaces.nsIDocShell).appType =
|
||||
Components.interfaces.nsIDocShell.APP_TYPE_EDITOR;
|
||||
|
||||
var is_HTMLEditor = IsHTMLEditor();
|
||||
|
|
Загрузка…
Ссылка в новой задаче