From cbaef7c236139f05caf03b61b9aa0019437a3505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=BCppers?= Date: Tue, 29 Nov 2016 16:22:25 +0100 Subject: [PATCH] Update index.js Fixed formatting and remove debug-logging --- index.js | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/index.js b/index.js index 72fe99a..c505fa9 100644 --- a/index.js +++ b/index.js @@ -160,13 +160,12 @@ class Tab extends EventEmitter { this.iconURL = iconURL; let span = this.tabElements.icon; if (iconURL) { - console.log(iconURL); if(iconURL.startsWith("fa-")) { - span.innerHTML = ``; - } - else { - span.innerHTML = ``; - } + span.innerHTML = ``; + } + else { + span.innerHTML = ``; + } } this.emit("icon-changed", iconURL, this); return this;