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/data/options-schema.json | |
parent | 55770934f807d94d35a99e739b2ee326bfd4afbd (diff) |
Popup window (#773)
* Add option usePopupWindow
* Add PopupWindow class
* Add support for creating PopupWindow
Diffstat (limited to 'ext/bg/data/options-schema.json')
-rw-r--r-- | ext/bg/data/options-schema.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index b56017bc..e2dd0573 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -111,7 +111,8 @@ "showPitchAccentGraph", "showIframePopupsInRootFrame", "useSecurePopupFrameUrl", - "usePopupShadowDom" + "usePopupShadowDom", + "usePopupWindow" ], "properties": { "enable": { @@ -257,6 +258,10 @@ "usePopupShadowDom": { "type": "boolean", "default": true + }, + "usePopupWindow": { + "type": "boolean", + "default": false } } }, |