Fixed Insert Table dialog to not insert if properties are not valid

This commit is contained in:
cmanske%netscape.com 1999-09-07 23:55:13 +00:00
Родитель b0ef8d73d4
Коммит 8739b154d3
1 изменённых файлов: 4 добавлений и 5 удалений

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

@ -151,10 +151,9 @@ function onOK()
}
}
}
// Don't delete selected text when inserting
editorShell.InsertElement(tableElement, false);
return true;
}
// Don't delete selected text when inserting
editorShell.InsertElement(tableElement, false);
return true;
return false;
}