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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user