diff options
author | Daniel Campoverde <alx@sillybytes.net> | 2017-10-29 22:26:08 -0500 |
---|---|---|
committer | Daniel Campoverde <alx@sillybytes.net> | 2017-10-29 22:26:08 -0500 |
commit | ef98e196abb21f3ebcb884ca623fddf520f18e70 (patch) | |
tree | 0427753b7fd9719975079a7562ebb367fa352523 /src/background/actions/operation.js | |
parent | d0df1a05a17fd3b30eba215b0f163042878a56b2 (diff) |
Add TAB_LAST operation
Diffstat (limited to 'src/background/actions/operation.js')
-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 074157b..a5094c0 100644 --- a/src/background/actions/operation.js +++ b/src/background/actions/operation.js @@ -22,6 +22,8 @@ const exec = (operation, tab) => { return tabs.selectNextTab(tab.index, operation.count); case operations.TAB_FIRST: return tabs.selectFirstTab(); + case operations.TAB_LAST: + return tabs.selectLastTab(); case operations.TAB_RELOAD: return tabs.reload(tab, operation.cache); case operations.ZOOM_IN: |