Skip to content

Commit

Permalink
removes console.logs
Browse files Browse the repository at this point in the history
I left them in for debugging...
  • Loading branch information
andOrlando committed Jan 20, 2021
1 parent 51413c6 commit 4147c19
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions public/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ const undoRegistry = []
document.onkeydown = e => {
var evtobj = window.event || e
if (evtobj.keyCode == 90 && evtobj.ctrlKey && undoRegistry.length !== 0) {
console.log(`list: ${undoRegistry}`)
console.log(`state: ${undoRegistry[0].state}`)
if (undoRegistry[0].state == Snackbar.SHOWN) {
undoRegistry[0].destroy();
}
Expand Down

0 comments on commit 4147c19

Please sign in to comment.