[open-ils-commits] r14983 - trunk/Open-ILS/web/js/ui/default/circ/selfcheck (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Thu Nov 19 16:57:20 EST 2009


Author: erickson
Date: 2009-11-19 16:57:14 -0500 (Thu, 19 Nov 2009)
New Revision: 14983

Modified:
   trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
Log:
fixed mis-matched variable name.  removed unnecessary dojo.connect() call

Modified: trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js	2009-11-19 19:02:30 UTC (rev 14982)
+++ trunk/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js	2009-11-19 21:57:14 UTC (rev 14983)
@@ -133,11 +133,9 @@
             // 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);



More information about the open-ils-commits mailing list