diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-05 22:03:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 22:03:35 -0400 |
commit | 44f38c4dea6d517bb7657063ed2394745945c1f8 (patch) | |
tree | 9a1e9f4eb781a8b551730284a6360cdcb6bf9c0a /ext/bg/js/options.js | |
parent | 55770934f807d94d35a99e739b2ee326bfd4afbd (diff) |
Popup window (#773)
* Add option usePopupWindow
* Add PopupWindow class
* Add support for creating PopupWindow
Diffstat (limited to 'ext/bg/js/options.js')
-rw-r--r-- | ext/bg/js/options.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index c513f572..1cabf2cf 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -467,6 +467,7 @@ class OptionsUtil { static _updateVersion4(options) { // Version 4 changes: // Options conditions converted to string representations. + // Added usePopupWindow. for (const {conditionGroups} of options.profiles) { for (const {conditions} of conditionGroups) { for (const condition of conditions) { @@ -479,6 +480,9 @@ class OptionsUtil { } } } + for (const {options: profileOptions} of options.profiles) { + profileOptions.general.usePopupWindow = false; + } return options; } } |