From a3b636c751e8d2a3cd8f7b488194c92bb6ce7c2e Mon Sep 17 00:00:00 2001 From: erickson Date: Thu, 19 Nov 2009 21:57:14 +0000 Subject: [PATCH] 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 --- Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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); -- 2.43.2