diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-07-25 13:23:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-25 13:23:51 -0400 |
commit | 2ed2b22d49b60b814ab578ccdb6d86897be9a3e4 (patch) | |
tree | b0bf096d011d41368ac23e4f060c711ca879f7df /ext/bg/js/backend.js | |
parent | 4a43b41f79d46b8a677bbfb11c27d43e126e670f (diff) |
Fix search popup mode (#687)
* Fix missing mode on search popup
* Remove mode update
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 74680099..19d285ef 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -932,7 +932,7 @@ class Backend { const popupWindow = await new Promise((resolve, reject) => { chrome.windows.create( { - url: baseUrl, + url: `${baseUrl}?mode=popup`, width: popupWidth, height: popupHeight, type: 'popup' |