Add TAB_FIRST operation

This commit is contained in:
Daniel Campoverde 2017-10-29 20:48:22 -05:00
parent aeebdcd3ef
commit a2651f617f
3 changed files with 16 additions and 0 deletions

View file

@ -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: