Editor UI work. Integrated Brendan's JS improvements. Trying to get popups to work in dialogs. Add Ben Goodger's table properties dialog work.

git-svn-id: svn://10.0.0.236/trunk@47733 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
cmanske%netscape.com
1999-09-16 04:36:16 +00:00
parent cc503ecf9b
commit a16c40cda3
13 changed files with 497 additions and 302 deletions

View File

@@ -100,14 +100,14 @@ function ValidateData()
// Set attributes: these may be empty strings
borderText = TrimString(dialog.borderInput.value);
if (StringExists(borderText)) {
if (borderText) {
// Set the other attributes on the table
if (ValidateNumberString(borderText, 0, maxPixels))
globalElement.setAttribute("border", borderText);
}
widthText = TrimString(dialog.widthInput.value);
if (StringExists(widthText)) {
if (widthText) {
var maxLimit;
if (percentChar == "%") {
maxLimit = 100;