From 703afe75aa755f755263441860944d5a75648a66 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 9 Mar 2020 18:37:23 -0400 Subject: [PATCH] cleaned up console logs --- src/js/popup.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/js/popup.js b/src/js/popup.js index 1a2fc5a..d280d6a 100644 --- a/src/js/popup.js +++ b/src/js/popup.js @@ -1000,7 +1000,6 @@ Logic.registerPanel(P_CONTAINERS_EDIT, { updateDeleteButton(selectedContainers) { const deleteButton = document.querySelector("div.panel-footer.panel-footer-secondary"); - console.log(deleteButton); if (selectedContainers.length === 0) { deleteButton.classList.add("hide"); } else { @@ -1072,7 +1071,6 @@ Logic.registerPanel(P_CONTAINERS_EDIT, { } else if (e.target.matches(".delete-container-icon") || e.target.parentNode.matches(".delete-container-icon")) { Logic.showPanel(P_CONTAINER_DELETE, identity); } else if (e.target.matches(".select-container") || e.target.parentNode.matches(".select-container")) { - console.log(this.shiftOn); const currentSelectedIdentity = Logic.currentSelectedIdentities(); const index = currentSelectedIdentity.indexOf(identity); @@ -1103,10 +1101,7 @@ Logic.registerPanel(P_CONTAINERS_EDIT, { } this.lastSelected = identity; - this.updateDeleteButton(currentSelectedIdentity); - - console.log(Logic.currentSelectedIdentities()); } }); });