diff options
author | hackademix | 2019-04-29 09:43:14 +0200 |
---|---|---|
committer | hackademix | 2019-04-29 09:43:14 +0200 |
commit | 0c2df08d783549f74801e060d5656f9f1f7f22ac (patch) | |
tree | fb1c79d56eb1f77168f1c1fa51a1d34a8757814d /src/ui | |
parent | 225ce1e6c8bad3704bb00ec24011362de8a54080 (diff) | |
download | noscript-0c2df08d783549f74801e060d5656f9f1f7f22ac.tar.gz noscript-0c2df08d783549f74801e060d5656f9f1f7f22ac.tar.xz noscript-0c2df08d783549f74801e060d5656f9f1f7f22ac.zip |
Reference internal pages as absolute URLs for Chromium compatibility.
Diffstat (limited to 'src/ui')
-rw-r--r-- | src/ui/popup.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ui/popup.js b/src/ui/popup.js index 87ac73e..310ecac 100644 --- a/src/ui/popup.js +++ b/src/ui/popup.js @@ -166,8 +166,10 @@ addEventListener("unload", e => { sitesUI.onChange = (row) => { pendingReload(!row.temp2perm); if (optionsClosed) return; - browser.tabs.query({url: browser.runtime.getManifest().options_ui.page }) - .then(tabs => { + browser.tabs.query({ + url: browser.extension.getURL( + browser.runtime.getManifest().options_ui.page) + }).then(tabs => { browser.tabs.remove(tabs.map(t => t.id)); }); optionsClosed = true; |