diff options
author | Daniel Campoverde <alx@sillybytes.net> | 2017-11-05 18:04:46 -0500 |
---|---|---|
committer | Daniel Campoverde <alx@sillybytes.net> | 2017-11-26 12:39:08 -0500 |
commit | 50cc126e08056b4f5191f603c01f0e9951692696 (patch) | |
tree | f51c80d47e1f74515d2813c8037183f3477eb0bf /src/background/actions | |
parent | 0b37c2250e21e8c40c2c5e9abfe51903458cc94d (diff) |
Dummy selectPrevSelTab implementation
Diffstat (limited to 'src/background/actions')
-rw-r--r-- | src/background/actions/operation.js | 2 |
1 files changed, 2 insertions, 0 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: |