summaryrefslogtreecommitdiff
path: root/httemplate/edit
diff options
context:
space:
mode:
authorivan <ivan>2007-12-18 20:42:31 +0000
committerivan <ivan>2007-12-18 20:42:31 +0000
commitaaa30aa5c72fee30f12bad04976cd3bfddfec35f (patch)
treeca73db44b3d15a9ba1a80fdead59b5b2745aaf0b /httemplate/edit
parent182331a1d0d79c1047f324f189e4a6549224d278 (diff)
IE is case-sensitive when setting maxLength (and other attributes?). hopefully that's all it is.
Diffstat (limited to 'httemplate/edit')
-rw-r--r--httemplate/edit/quick-charge.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/quick-charge.html b/httemplate/edit/quick-charge.html
index 94682d0a6..5d4bc2e1c 100644
--- a/httemplate/edit/quick-charge.html
+++ b/httemplate/edit/quick-charge.html
@@ -147,7 +147,7 @@ function validate_quick_charge () {
description_input.setAttribute('name', 'description'+rownum);
description_input.setAttribute('id', 'description'+rownum);
description_input.setAttribute('size', 60);
- description_input.setAttribute('maxlength', 65);
+ description_input.setAttribute('maxLength', 65);
description_input.setAttribute('rownum', rownum);
description_input.onkeyup = possiblyAddRow;
description_cell.appendChild(description_input);