[freeside-commits] freeside/httemplate/edit quick-charge.html, 1.2, 1.3
Ivan,,,
ivan at wavetail.420.am
Tue Dec 18 12:42:32 PST 2007
Update of /home/cvs/cvsroot/freeside/httemplate/edit
In directory wavetail:/tmp/cvs-serv27236
Modified Files:
quick-charge.html
Log Message:
IE is case-sensitive when setting maxLength (and other attributes?). hopefully that's all it is.
Index: quick-charge.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/edit/quick-charge.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- quick-charge.html 31 Jan 2007 04:26:44 -0000 1.2
+++ quick-charge.html 18 Dec 2007 20:42:30 -0000 1.3
@@ -147,7 +147,7 @@
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);
More information about the freeside-commits
mailing list