diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-09-12 12:16:21 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-09-12 12:16:21 -0400 |
commit | 3e46323fb8c43b5a226251299a993befc896b71f (patch) | |
tree | eae47711b4446dfe660c8d30ec70be968182985b /httemplate/elements | |
parent | 998b32d356338772484814a477d9efb159206b8d (diff) |
RT# 77504 - Documented javascript.
Diffstat (limited to 'httemplate/elements')
-rw-r--r-- | httemplate/elements/validate_password.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/validate_password.html b/httemplate/elements/validate_password.html index d7e9f6d81..4057f5d3f 100644 --- a/httemplate/elements/validate_password.html +++ b/httemplate/elements/validate_password.html @@ -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; |