Removes console.log call

This removes the log call of `'Self: ‘ + myself`.
The log call seemingly serves no purpose, and looks like it's leftover from debugging.
It pollutes the console, and adds noise you don't want when actively using the console when developing web apps.
This commit is contained in:
Cathrine Vaage 2021-02-01 14:30:37 +01:00
parent 6407de895d
commit 820551192e

View File

@ -108,8 +108,6 @@ function init() {
setInterval(updateTwitterClasses, 800);
}
console.log('Self: ' + myself)
document.addEventListener('contextmenu', evt => {
lastRightClickedElement = <HTMLElement>evt.target;
}, true);