CaScadeS only

Editorshell removal
This commit is contained in:
glazman%netscape.com 2002-11-22 12:40:12 +00:00
Родитель 36efaff0e4
Коммит 31f6fe5b14
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -71,11 +71,11 @@ var gInsertIndex = -1;
// * dialog initialization code
function Startup()
{
if (InitEditorShell) {
if (typeof window.InitEditorShell == "function") {
if (!InitEditorShell())
return;
}
else if (GetCurrentEditor && !GetCurrentEditor()) {
else if (typeof window.GetCurrentEditor != "function" || !GetCurrentEditor()) {
window.close();
return;
}
@ -1687,7 +1687,7 @@ function onExportStylesheet() {
}
function getCurrentEditor() {
if (InitEditorShell)
if (typeof window.InitEditorShell == "function")
return editorShell.editor;
else
return GetCurrentEditor();