Removed console logs.

This commit is contained in:
Uwe Oestermeier 2020-08-04 18:13:24 +02:00
parent 12b17fd7af
commit 4211548b8b
2 changed files with 0 additions and 4 deletions

2
dist/iwmlib.js vendored
View File

@ -6671,9 +6671,7 @@
if (this.autoClose) {
this.close();
}
console.log("perform", event, key);
setTimeout((event, key) => {
console.log("perform within arrow", event, key);
func(event, key);
}, 20, event, key);
}

View File

@ -113,9 +113,7 @@ export default class PopupMenu extends Popup {
if (this.autoClose) {
this.close()
}
console.log("perform", event, key)
setTimeout((event, key) => {
console.log("perform within arrow", event, key)
func(event, key)
}, 20, event, key)
}