From 12ccdb8cc2399271dbd1f0aeb7dd036eaafc9d92 Mon Sep 17 00:00:00 2001 From: Robin Riclet Date: Tue, 4 Apr 2017 15:07:27 +0200 Subject: [PATCH] Restored whitespaces --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index e9743b2..6d49ae2 100644 --- a/index.js +++ b/index.js @@ -294,13 +294,13 @@ const TabPrivate = { initWebview: function () { this.webview = document.createElement("webview"); - + const tabWebviewDidFinishLoadHandler = function (e) { this.emit("webview-ready", this); }; this.webview.addEventListener("did-finish-load", tabWebviewDidFinishLoadHandler.bind(this), false); - + this.webview.classList.add(this.tabGroup.options.viewClass); if (this.webviewAttributes) { let attrs = this.webviewAttributes; @@ -308,7 +308,7 @@ const TabPrivate = { this.webview.setAttribute(key, attrs[key]); } } - + this.tabGroup.viewContainer.appendChild(this.webview); } };