From 7b54d7ca53c57afccd3a5d839c5c4dd0a5813f2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ignacio=20de=20Miguel=20Di=C3=ADaz?= Date: Fri, 12 Apr 2024 11:43:37 +0200 Subject: [PATCH] Version bumped to 0.5.5 fixing #13 --- manifest.json | 2 +- options/options.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 9f870be..b08bbdc 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "__MSG_extensionName__", - "version": "0.5.4", + "version": "0.5.5", "description": "__MSG_extensionDescription__", "default_locale": "en", "homepage_url": "https://github.com/imigueldiaz/firefox-quick-abstract", diff --git a/options/options.js b/options/options.js index 59aa200..de0903e 100644 --- a/options/options.js +++ b/options/options.js @@ -54,7 +54,7 @@ function showErrorBadge(message) { errorBadge.style.opacity = '1'; setTimeout(() => { errorBadge.style.opacity = '0'; - setTimeout(() => errorBadge.remove(), 500); + }, 2000); } } @@ -73,7 +73,7 @@ function showInfoBadge() { infoBadge.style.opacity = '1'; setTimeout(() => { infoBadge.style.opacity = '0'; - setTimeout(() => infoBadge.remove(), 500); + }, 2000); } }