Dummy selectPrevSelTab implementation
This commit is contained in:
parent
0b37c2250e
commit
50cc126e08
4 changed files with 20 additions and 2 deletions
|
@ -27,6 +27,8 @@ const exec = (operation, tab) => {
|
|||
return tabs.selectFirstTab();
|
||||
case operations.TAB_LAST:
|
||||
return tabs.selectLastTab();
|
||||
case operations.TAB_PREV_SEL:
|
||||
return tabs.selectPrevSelTab();
|
||||
case operations.TAB_RELOAD:
|
||||
return tabs.reload(tab, operation.cache);
|
||||
case operations.TAB_PIN:
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// var prevSelTab = null;
|
||||
var prevSelTab = 0;
|
||||
|
||||
const closeTab = (id) => {
|
||||
return browser.tabs.remove(id);
|
||||
};
|
||||
|
@ -93,6 +96,17 @@ const selectLastTab = () => {
|
|||
});
|
||||
};
|
||||
|
||||
const selectPrevSelTab = () => {
|
||||
if (prevSelTab != null) {
|
||||
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
||||
let id = tabs[prevSelTab].id;
|
||||
return browser.tabs.update(id, { active: true });
|
||||
});
|
||||
} else {
|
||||
// some error message
|
||||
}
|
||||
};
|
||||
|
||||
const reload = (current, cache) => {
|
||||
return browser.tabs.reload(
|
||||
current.id,
|
||||
|
@ -117,6 +131,6 @@ const duplicate = (id) => {
|
|||
|
||||
export {
|
||||
closeTab, reopenTab, selectAt, selectByKeyword, getCompletions,
|
||||
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, reload,
|
||||
updateTabPinned, toggleTabPinned, duplicate
|
||||
selectPrevTab, selectNextTab, selectFirstTab, selectLastTab, selectPrevSelTab,
|
||||
reload, updateTabPinned, toggleTabPinned, duplicate
|
||||
};
|
||||
|
|
Reference in a new issue