Removed old console logs

This commit is contained in:
Joel Collins 2020-11-23 13:08:44 +00:00
parent 358d44189b
commit 2e34722d6e
23 changed files with 21 additions and 103 deletions

View file

@ -199,15 +199,13 @@ export default {
(state, getters) => {
return getters.uriV2;
},
uriV2 => {
() => {
this.checkConnection();
console.log(uriV2);
}
);
// Keyboard shortcuts
Mousetrap.bind("?", () => {
console.log(this.keyboardManual);
this.toggleModalElement(this.$refs["keyboardManualModal"]); // Calls the mixin
});
@ -290,7 +288,6 @@ export default {
// Remove origin watcher
this.unwatchOriginFunction();
// Remove key listeners
console.log("Resetting Mousetrap");
Mousetrap.reset();
},
@ -313,7 +310,6 @@ export default {
},
handleExit: function() {
console.log("Triggered beforeunload");
this.$root.$emit("globalTogglePreview", false);
},