From 00917f585ef5ae2694a953101032b32a9bc9f852 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 4 Jun 2021 13:03:05 -0700 Subject: [PATCH] Turn off hotkeys.js logging every press. --- frontends/ycdl_flask/static/js/hotkeys.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/ycdl_flask/static/js/hotkeys.js b/frontends/ycdl_flask/static/js/hotkeys.js index e29e657..b595791 100644 --- a/frontends/ycdl_flask/static/js/hotkeys.js +++ b/frontends/ycdl_flask/static/js/hotkeys.js @@ -73,7 +73,7 @@ function hotkeys_listener(event) { if (hotkeys.should_prevent_hotkey(event)) { return; } identifier = hotkeys.hotkey_identifier(event.key, event.ctrlKey, event.shiftKey, event.altKey); - console.log(identifier); + //console.log(identifier); if (identifier in hotkeys.HOTKEYS) { hotkeys.HOTKEYS[identifier]["action"]();