Add TAB_LAST operation

This commit is contained in:
Daniel Campoverde 2017-10-29 22:26:08 -05:00
parent d0df1a05a1
commit ef98e196ab
4 changed files with 12 additions and 9 deletions

View file

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