Skip to content

Commit

Permalink
Merge pull request #15 from imigueldiaz/14-when-i-press-save-on-the-s…
Browse files Browse the repository at this point in the history
…ettings-two-times-the-second-one-the-badge-is-not-showing

Version bumped to 0.5.5 fixing #14
  • Loading branch information
imigueldiaz authored Apr 12, 2024
2 parents 0701b82 + 7b54d7c commit 41e1bb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions options/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function showErrorBadge(message) {
errorBadge.style.opacity = '1';
setTimeout(() => {
errorBadge.style.opacity = '0';
setTimeout(() => errorBadge.remove(), 500);

}, 2000);
}
}
Expand All @@ -73,7 +73,7 @@ function showInfoBadge() {
infoBadge.style.opacity = '1';
setTimeout(() => {
infoBadge.style.opacity = '0';
setTimeout(() => infoBadge.remove(), 500);

}, 2000);
}
}
Expand Down

0 comments on commit 41e1bb8

Please sign in to comment.