From 3ce15cf4d519fad40f7235059691cd6ed3360442 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 22 Sep 2023 08:12:13 +0800 Subject: [PATCH 1/2] Prevent scroll on focus of the extension toast element --- pkg/extension/src/scripts/content/toast.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/extension/src/scripts/content/toast.js b/pkg/extension/src/scripts/content/toast.js index 926cb9360..1751b497f 100644 --- a/pkg/extension/src/scripts/content/toast.js +++ b/pkg/extension/src/scripts/content/toast.js @@ -220,7 +220,9 @@ } }) - currentToastEl.focus() + currentToastEl.focus({ + preventScroll: true, + }) } function updatePageStatus(status) { From 83d9f27ea1aabbcf5c5426b396b2e69df9c90f7a Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 22 Sep 2023 11:54:13 +0800 Subject: [PATCH 2/2] Bump version number --- pkg/extension/src/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/extension/src/manifest.json b/pkg/extension/src/manifest.json index d2aee9c93..c82046e48 100644 --- a/pkg/extension/src/manifest.json +++ b/pkg/extension/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "process.env.EXTENSION_NAME", "short_name": "process.env.EXTENSION_NAME", - "version": "2.4.2", + "version": "2.4.4", "description": "Save PDFs and Articles to your Omnivore library", "author": "Omnivore Media, Inc", "default_locale": "en",