diff options
author | Cornelius Matějka <matejka.cornelius@mailbox.org> | 2017-11-22 19:22:30 +0100 |
---|---|---|
committer | Cornelius Matějka <matejka.cornelius@mailbox.org> | 2018-01-14 17:19:02 +0100 |
commit | e7dcd7f500f9c139835313a573f861a10aa49d18 (patch) | |
tree | 9427f23f21a2d917ea7a160db2eae5ed74f57d38 /src/background/actions | |
parent | 423d17aeb6117fad7fbd1d18021e39d444a65b51 (diff) |
Pinned tabs are not closeable by 'd'
Added binding 'DD' to force tab close which also closes pinned tabs
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: |