From: erickson Date: Thu, 19 Nov 2009 21:57:14 +0000 (+0000) Subject: fixed mis-matched variable name. removed unnecessary dojo.connect() call X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a3b636c751e8d2a3cd8f7b488194c92bb6ce7c2e;p=evergreen%2Fpines.git fixed mis-matched variable name. removed unnecessary dojo.connect() call git-svn-id: svn://svn.open-ils.org/ILS/trunk@14983 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js b/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js index 6e4a6b47a9..66551c9c78 100644 --- a/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js +++ b/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js @@ -133,11 +133,9 @@ SelfCheckManager.prototype.drawLoginPage = function() { // password is required. wire up the scan box to read it self.updateScanBox({ msg : 'Please enter your password', // TODO i18n - handler : function(pw) { self.loginPatron(barcode, ps); } + handler : function(pw) { self.loginPatron(barcode, pw); } }); - dojo.connect(selfckScanBox, 'onKeyDown', pwHandler); - } else { // password is not required, go ahead and login self.loginPatron(barcode);