[FIX] point_of_sale: removed console.logs
authorFrédéric van der Essen <fva@openerp.com>
Fri, 11 Jan 2013 14:42:55 +0000 (15:42 +0100)
committerFrédéric van der Essen <fva@openerp.com>
Fri, 11 Jan 2013 14:42:55 +0000 (15:42 +0100)
bzr revid: fva@openerp.com-20130111144255-cgs85ue7hsp5ces7

addons/point_of_sale/static/src/js/devices.js

index 55e75eb..e7d0376 100644 (file)
@@ -438,7 +438,7 @@ function openerp_pos_devices(instance,module){ //module is instance.point_of_sal
             // The barcode readers acts as a keyboard, we catch all keyup events and try to find a 
             // barcode sequence in the typed keys, then act accordingly.
             $('body').delegate('','keyup', function (e){
-                console.log('keyup:'+String.fromCharCode(e.keyCode)+' '+e.keyCode,e);
+                //console.log('keyup:'+String.fromCharCode(e.keyCode)+' '+e.keyCode,e);
                 //We only care about numbers
                 if (e.keyCode >= 48 && e.keyCode < 58){