From 9d04db9abcb9402e385074bdd39d4074c05f9a71 Mon Sep 17 00:00:00 2001 From: Brad Campbell Date: Sat, 14 May 2016 19:37:44 -0400 Subject: [PATCH] remove some console.logs --- chezbetty/static/js/chezbetty-terminal-keyboard.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/chezbetty/static/js/chezbetty-terminal-keyboard.js b/chezbetty/static/js/chezbetty-terminal-keyboard.js index fec1198..e9b5385 100644 --- a/chezbetty/static/js/chezbetty-terminal-keyboard.js +++ b/chezbetty/static/js/chezbetty-terminal-keyboard.js @@ -19,15 +19,10 @@ function process_input () { var keyin = keyboard_input; keyboard_input = ''; - console.log('keboard input: ' + keyin) - - if (keyin.slice(0, 3) == "%B6") { // This looks like an M-Card var umid = keyin.slice(8, 16); - console.log('got umid ' + umid); - // Ignore MCard input while the splash screen is live if ($('#splash').is(':visible')) { return; @@ -42,7 +37,6 @@ function process_input () { // as one string. var dollars = keyin.slice(keyin.length-3, keyin.length); - console.log(dollars) if (dollars == 'BEG') { start_deposit(); } else { @@ -51,11 +45,9 @@ function process_input () { } } else { - console.log('barcode') // Well, this must be a barcode scan if (keyin.length > 1) { var barcode = keyin.slice(0, keyin.length-1); - console.log(barcode) add_item(barcode); } }