зеркало из https://github.com/mozilla/pjs.git
call editPage instead of deprecated EditorOpenUrl (bug 104908, r=cmanske, sr=kin, a=dbaron)
This commit is contained in:
Родитель
e51e6cf03f
Коммит
2e3787341e
|
@ -327,7 +327,7 @@ var nsOpenCommand =
|
||||||
*/
|
*/
|
||||||
if (fp.file && fp.file.path.length > 0) {
|
if (fp.file && fp.file.path.length > 0) {
|
||||||
SaveFilePickerDirectory(fp, "html");
|
SaveFilePickerDirectory(fp, "html");
|
||||||
EditorOpenUrl(fp.fileURL.spec);
|
editPage(fp.fileURL.spec, window, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -2379,7 +2379,7 @@ var nsEditLinkCommand =
|
||||||
{
|
{
|
||||||
var element = window.editorShell.GetSelectedElement("href");
|
var element = window.editorShell.GetSelectedElement("href");
|
||||||
if (element)
|
if (element)
|
||||||
EditorOpenUrl(element.href);
|
editPage(element.href, window, false);
|
||||||
|
|
||||||
window._content.focus();
|
window._content.focus();
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче