removed logs

This commit is contained in:
Nick Walton
2019-04-29 17:32:29 -06:00
parent afdd1bb167
commit 885bf0c47c
-4
View File
@@ -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