From 1815fc973080573902f47767fe35d498314e79fd Mon Sep 17 00:00:00 2001 From: Caleb Robinson Date: Wed, 22 Jul 2020 20:15:38 +0000 Subject: [PATCH] Removing debug call from key handler --- web_tool/js/handlers.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web_tool/js/handlers.js b/web_tool/js/handlers.js index 1075c00..0868157 100644 --- a/web_tool/js/handlers.js +++ b/web_tool/js/handlers.js @@ -126,7 +126,6 @@ var addRetrainKeyHandler = function(){ var addOpacityKeyHandlers = function(opacitySlider){ $(document).keydown(function(e) { - console.debug(e.which); if(document.activeElement == document.body){ // only register if we are in document.body so that we don't fire events when typing in text boxes if(e.which == 97 || e.which == 65) { // "a" - set invisible gVisible = false;