Removing debug call from key handler

This commit is contained in:
Caleb Robinson 2020-07-22 20:15:38 +00:00
Родитель 92e5a5f57b
Коммит 1815fc9730
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -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;