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
parent b0ef8d73d4
commit 8739b154d3

View File

@ -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;
}