summaryrefslogtreecommitdiff
path: root/httemplate/edit/quick-charge.html
diff options
context:
space:
mode:
authorivan <ivan>2007-12-18 20:42:30 +0000
committerivan <ivan>2007-12-18 20:42:30 +0000
commit1c051f73e8abf23206d0373e7c83279b37bed708 (patch)
tree334f56db5babc852c910adb544c0fcae4a4723e1 /httemplate/edit/quick-charge.html
parente81b2697c6509212d234aedcd8f35b190b971086 (diff)
IE is case-sensitive when setting maxLength (and other attributes?). hopefully that's all it is.
Diffstat (limited to 'httemplate/edit/quick-charge.html')
-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);