Index: chrome/ext/popup.js |
diff --git a/chrome/ext/popup.js b/chrome/ext/popup.js |
index f5132aa457a4366129078917064aefc9092ebc42..7eb1ca45497aeb37cbb9a5a96400a6c791e47ae5 100644 |
--- a/chrome/ext/popup.js |
+++ b/chrome/ext/popup.js |
@@ -1,8 +1,10 @@ |
"use strict"; |
+let ext; |
+ |
{ |
const backgroundPage = chrome.extension.getBackgroundPage(); |
- var ext = Object.create(backgroundPage.ext); |
+ ext = Object.create(backgroundPage.ext); |
ext.closePopup = () => |
{ |