From 1c051f73e8abf23206d0373e7c83279b37bed708 Mon Sep 17 00:00:00 2001 From: ivan Date: Tue, 18 Dec 2007 20:42:30 +0000 Subject: [PATCH] IE is case-sensitive when setting maxLength (and other attributes?). hopefully that's all it is. --- httemplate/edit/quick-charge.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0