diff options
author | Daniel Campoverde <alx@sillybytes.net> | 2017-10-29 20:48:22 -0500 |
---|---|---|
committer | Daniel Campoverde <alx@sillybytes.net> | 2017-10-29 20:48:22 -0500 |
commit | a2651f617f2b1aebd8d12eb868fcbcd5303ed6ea (patch) | |
tree | 74ff9ff4593f4f5d8231750b21e1226e2ae7875a /src/background/actions | |
parent | aeebdcd3ef10bc3a15b6bc000189e0b5774be0e9 (diff) |
Add TAB_FIRST operation
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 b94c117..7c0df4e 100644 --- a/src/background/actions/operation.js +++ b/src/background/actions/operation.js @@ -20,6 +20,8 @@ const exec = (operation, tab) => { return tabs.selectPrevTab(tab.index, operation.count); case operations.TAB_NEXT: return tabs.selectNextTab(tab.index, operation.count); + case operations.TAB_FIRST: + return tabs.selectFirstTab(tab.index, operation.count); case operations.TAB_RELOAD: return tabs.reload(tab, operation.cache); case operations.ZOOM_IN: |