Skip to content

Commit

Permalink
Version bumped to 0.5.5 fixing #13
Browse files Browse the repository at this point in the history
  • Loading branch information
imigueldiaz committed Apr 12, 2024
1 parent 0701b82 commit 7b54d7c
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 7b54d7c

Please sign in to comment.