aboutsummaryrefslogtreecommitdiff
path: root/src/background
diff options
context:
space:
mode:
authorDaniel Campoverde <alx@sillybytes.net>2017-11-05 18:04:46 -0500
committerDaniel Campoverde <alx@sillybytes.net>2017-11-26 12:39:08 -0500
commit50cc126e08056b4f5191f603c01f0e9951692696 (patch)
treef51c80d47e1f74515d2813c8037183f3477eb0bf /src/background
parent0b37c2250e21e8c40c2c5e9abfe51903458cc94d (diff)
Dummy selectPrevSelTab implementation
Diffstat (limited to 'src/background')
-rw-r--r--src/background/actions/operation.js2
-rw-r--r--src/background/tabs.js18
2 files changed, 18 insertions, 2 deletions
diff --git a/src/background/actions/operation.js b/src/background/actions/operation.js
index 1e4990c..cfee868 100644
--- a/src/background/actions/operation.js
+++ b/src/background/actions/operation.js
@@ -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:
diff --git a/src/background/tabs.js b/src/background/tabs.js
index d641616..ce48eda 100644
--- a/src/background/tabs.js
+++ b/src/background/tabs.js
@@ -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
};