From: edoceo Date: Thu, 8 Nov 2012 04:08:27 +0000 (-0800) Subject: This checks for the keypress of 'Enter' and then executes the cmd_verify routine X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1916d9b23e0c4f611826aedba6ac48949a3cafa4;p=working%2FEvergreen.git This checks for the keypress of 'Enter' and then executes the cmd_verify routine Password field is blanked after each attempt Signed-off-by: edoceo --- diff --git a/Open-ILS/xul/staff_client/server/main/verify_credentials.js b/Open-ILS/xul/staff_client/server/main/verify_credentials.js index 3d2a4848f2..03193c7c84 100644 --- a/Open-ILS/xul/staff_client/server/main/verify_credentials.js +++ b/Open-ILS/xul/staff_client/server/main/verify_credentials.js @@ -65,7 +65,6 @@ function verify_init() { ) ); - } catch(E) { alert(E); } @@ -74,6 +73,7 @@ function verify_init() { } else { document.getElementById('name_prompt').focus(); } + document.getElementById('password_prompt').value = ''; }, false ); @@ -111,6 +111,14 @@ function verify_init() { document.getElementById('name_prompt').focus(); } + document.getElementById('password_prompt').addEventListener('keypress',function(e) { + if ( e.keyCode && (e.keyCode == 13 || e.keyCode == 77)) { + var x = document.createEvent('Event'); + x.initEvent('command',true,false); + document.getElementById('cmd_verify').dispatchEvent(x); + } + }); + } catch(E) { alert(E); }