Index: chrome/ext/popup.js |
diff --git a/chrome/ext/popup.js b/chrome/ext/popup.js |
index f5132aa457a4366129078917064aefc9092ebc42..8e757b066fda40fdc7512f32c0e8d85f3ca67f6f 100644 |
--- a/chrome/ext/popup.js |
+++ b/chrome/ext/popup.js |
@@ -2,7 +2,10 @@ |
{ |
const backgroundPage = chrome.extension.getBackgroundPage(); |
+ |
+ /* eslint-disable no-var */ |
var ext = Object.create(backgroundPage.ext); |
Sebastian Noack
2017/02/09 01:04:49
The popup code (also) broke because you used Objec
kzar
2017/02/20 10:27:30
Ah well spotted, Done.
|
+ /* eslint-enable no-var */ |
ext.closePopup = () => |
{ |