Skip to content

Commit

Permalink
fix: Remaining tab order fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Oct 14, 2023
1 parent 314d8b6 commit a8bafcd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "quickmove",
"description": "Quick Folder Move",
"version": "2.7.0",
"version": "2.8.0",
"private": true,
"author": "Philipp Kewisch <[email protected]>",
"license": "MPL-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ browser.runtime.onInstalled.addListener(({ reason, previousVersion }) => {

browser.commands.onCommand.addListener(async (name) => {
let popupOrder = [browser.messageDisplayAction, browser.browserAction];
let popupUrl =`/popup/popup.html?action=${name}&allowed=move,copy,tag,goto`;
let popupUrl =`/popup/popup.html?action=${name}&allowed=move,copy,goto,tag`;
if (name == "goto") {
popupOrder = popupOrder.reverse();
}
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "2.7.0",
"version": "2.8.0",
"default_locale": "en",
"author": "Philipp Kewisch",
"browser_specific_settings": {
Expand Down
2 changes: 1 addition & 1 deletion src/popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function load() {

let actions = new Set(ALL_ACTIONS);

for (let allowedAction of (params.get("allowed") || "move,copy,tag,goto").split(",")) {
for (let allowedAction of (params.get("allowed") || "move,copy,goto,tag").split(",")) {
actions.delete(allowedAction);
}

Expand Down

0 comments on commit a8bafcd

Please sign in to comment.