Remove console logs

This commit is contained in:
2021-09-27 19:37:12 +02:00
parent 07200af13e
commit 1c4b1f93b3

View File

@@ -607,7 +607,7 @@ function postMessage(sMsg)
function keyController(e, elem) function keyController(e, elem)
{ {
let $This = $(elem || this); console.log($This); let $This = $(elem || this);
let sType = $This.is('input')?'input':'regular'; let sType = $This.is('input')?'input':'regular';
if(e.keyCode != 9) databap.tmp('tab_info', {}); //See case 9, tab if(e.keyCode != 9) databap.tmp('tab_info', {}); //See case 9, tab
switch(e.keyCode) switch(e.keyCode)
@@ -1073,7 +1073,6 @@ function onMessageEditClick()
if(e.keyCode == 9) { if(e.keyCode == 9) {
e.preventDefault(); e.preventDefault();
keyController(e, this); keyController(e, this);
console.log('shoot');
} }
}) })
.on('focusout keydown', function(e) { .on('focusout keydown', function(e) {