From 9c6ff387a0836a78b7a755cfc99828e09d6a6cf8 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 6 Nov 2020 22:14:00 -0500 Subject: Popup preview update (#994) * Add options.global.showPopupPreview option * Add preview visibility control using a checkbox * Add attribute on page load * Disable animation until page is loaded --- ext/bg/data/options-schema.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ext/bg/data') diff --git a/ext/bg/data/options-schema.json b/ext/bg/data/options-schema.json index b66577f8..159ca009 100644 --- a/ext/bg/data/options-schema.json +++ b/ext/bg/data/options-schema.json @@ -790,7 +790,8 @@ "global": { "type": "object", "required": [ - "database" + "database", + "showPopupPreview" ], "properties": { "database": { @@ -804,6 +805,10 @@ "default": false } } + }, + "showPopupPreview": { + "type": "boolean", + "default": false } } } -- cgit v1.2.3