From 36541996cced46535f5ee52b4004d8265c6c25c1 Mon Sep 17 00:00:00 2001 From: ortiza5 <43008712+ortiza5@users.noreply.github.com> Date: Mon, 15 Mar 2021 23:52:23 -0600 Subject: [PATCH] removed debugging printouts --- js/options.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/options.js b/js/options.js index 5e0dcbc..d13baea 100644 --- a/js/options.js +++ b/js/options.js @@ -5,7 +5,6 @@ function getSettings(callback) { chrome.storage.local.get(["extension-settings"], function (result) { SETTINGS_FULL = result["extension-settings"]; HOTKEY_CODES = SETTINGS_FULL.hotkeys.codes; - console.log(HOTKEY_CODES); if (callback instanceof Function) { callback(); } @@ -44,7 +43,6 @@ function enterNewHotkey(event) { setHotkeyBtn(element.parentNode); } keysDown.add(e.key.toLowerCase(), keysDown.size); - console.log(keysDown); textArea.innerHTML = formateHotkeys(keysDown); keysFinal = new Set(keysDown); } @@ -175,7 +173,6 @@ function setHotkeyBtn(btnParent) { if (hotkeys.length !== 0) { hotkeys.forEach((hotkey, index) => { let el = document.createElement("div"); - console.log(hotkey + " " + index); el.setAttribute("id", btnParent.id + "-hotkey-" + index); el.setAttribute("class", "btn hotkeys"); el.innerHTML = `