added support for pinning/unpinning tabs
features: * pin tab * unpin tab * toggle pin/unpin tab
This commit is contained in:
parent
b3b017a123
commit
c2d2f895a5
5 changed files with 24 additions and 1 deletions
|
@ -26,6 +26,12 @@ const exec = (operation, tab) => {
|
|||
return tabs.selectLastTab();
|
||||
case operations.TAB_RELOAD:
|
||||
return tabs.reload(tab, operation.cache);
|
||||
case operations.TAB_PIN:
|
||||
return tabs.updateTabPinned(tab, true);
|
||||
case operations.TAB_UNPIN:
|
||||
return tabs.updateTabPinned(tab, false);
|
||||
case operations.TAB_TOGGLE_PINNED:
|
||||
return tabs.updateTabPinned(tab);
|
||||
case operations.ZOOM_IN:
|
||||
return zooms.zoomIn();
|
||||
case operations.ZOOM_OUT:
|
||||
|
|
Reference in a new issue