RT# 77504 - Documented javascript.
authorChristopher Burger <burgerc@freeside.biz>
Tue, 12 Sep 2017 16:16:21 +0000 (12:16 -0400)
committerChristopher Burger <burgerc@freeside.biz>
Tue, 12 Sep 2017 16:16:21 +0000 (12:16 -0400)
httemplate/elements/validate_password.html

index d7e9f6d..4057f5d 100644 (file)
@@ -25,7 +25,9 @@ function add_password_validation (fieldid, submitid) {
   inputfield.onkeydown = function(e) {
     var key;
     if (window.event) { key = window.event.keyCode; }
-    else { key = e.which; }
+    else { key = e.which; } // for ff browsers
+    // some browsers allow the enter key to submit a form even if the submit button is disabled
+    // below prevents enter key from submiting form if password has not been validated.
     if (key == '13') {
       var check = checkPasswordValidation();
       return check;