From 885bf0c47c2f1b7d3c1758b30a2ed2c009960b9f Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Mon, 29 Apr 2019 17:32:29 -0600 Subject: [PATCH] removed logs --- static/script.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/static/script.js b/static/script.js index ca7f587..069d8f9 100644 --- a/static/script.js +++ b/static/script.js @@ -220,7 +220,6 @@ function KeyCheck(evt) { evt = evt || window.event var charCode = evt.keyCode || evt.which if(charCode == 8){ - console.log("delete pressed") if(inputStr.length > 0){ console.log(inputStr) inputStr = inputStr.substring(0, inputStr.length-1) @@ -236,9 +235,6 @@ document.onkeypress = function(evt) { if(acceptInput && !isMobileDevice()){ evt = evt || window.event var charCode = evt.keyCode || evt.which - - console.log(typeof charCode) - console.log("Char code is " + charCode) if(charCode == 13){ acceptInput = false