From 518f521f89efa480bc863f51c5d83167e85102b9 Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 22 May 2018 12:03:59 +0200 Subject: [PATCH] fix support tab render method --- src/app/tabs/support-tab.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/tabs/support-tab.js b/src/app/tabs/support-tab.js index 132b110dc1..9591db29cf 100644 --- a/src/app/tabs/support-tab.js +++ b/src/app/tabs/support-tab.js @@ -26,8 +26,8 @@ module.exports = class SupportTab { } render () { const self = this - self._view.el = yo` -
+ var el = yo` +
Have a question, found a bug or want to propose a feature? Have a look at the issues or check out @@ -41,7 +41,8 @@ module.exports = class SupportTab { ${self._view.gitterIframe}
` - return self._view.el + if (!self._view.el) self._view.el = el + return el function openLink () { window.open('https://gitter.im/ethereum/remix') } } }