From 92f317ddd06a27fa5449feec88e76b3ed681a57d Mon Sep 17 00:00:00 2001 From: "cmanske%netscape.com" Date: Wed, 13 Jun 2001 00:17:12 +0000 Subject: [PATCH] Fixed wrong attribute string in Insert Table dialog; part of fix to bug 77427, r=brade, sr=kin, a=asa-drivers git-svn-id: svn://10.0.0.236/trunk@97011 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/editor/ui/dialogs/content/EdInsertTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/editor/ui/dialogs/content/EdInsertTable.js b/mozilla/editor/ui/dialogs/content/EdInsertTable.js index 7981a9741ca..3d8ef88c10e 100644 --- a/mozilla/editor/ui/dialogs/content/EdInsertTable.js +++ b/mozilla/editor/ui/dialogs/content/EdInsertTable.js @@ -89,7 +89,7 @@ function InitDialog() // Get default attributes set on the created table: // Get the width attribute of the element, stripping out "%" // This sets contents of menu combobox list - dialog.widthInput.value = InitPixelOrPercentMenulist(globalElement, tableElement, "widthInput","widthPixelOrPercentMenulist", gPercent); + dialog.widthInput.value = InitPixelOrPercentMenulist(globalElement, tableElement, "width", "widthPixelOrPercentMenulist", gPercent); dialog.borderInput.value = globalElement.getAttribute("border"); }