diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-01-15 12:31:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-15 12:31:27 +0000 |
commit | 9daac979d58af46fccfa335b96f468af9bc2fca9 (patch) | |
tree | 1d58bee97dd49cc8fa79dc1d6cc60741afefe0ac /src/background/actions | |
parent | 423d17aeb6117fad7fbd1d18021e39d444a65b51 (diff) | |
parent | 478aa3cfab255fdf33bef175358bd21478f56882 (diff) |
Merge pull request #236 from r3r57/feature/force_remove_tab
Closing pinned tabs must be forced
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 cfee868..1188ea2 100644 --- a/src/background/actions/operation.js +++ b/src/background/actions/operation.js @@ -17,6 +17,8 @@ const exec = (operation, tab) => { switch (operation.type) { case operations.TAB_CLOSE: return tabs.closeTab(tab.id); + case operations.TAB_CLOSE_FORCE: + return tabs.closeTabForce(tab.id); case operations.TAB_REOPEN: return tabs.reopenTab(); case operations.TAB_PREV: |