Clean up TAB_FIRST operation

This commit is contained in:
Daniel Campoverde 2017-10-29 22:03:46 -05:00
parent 2c97f8a4f3
commit d0df1a05a1
3 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ const exec = (operation, tab) => {
case operations.TAB_NEXT:
return tabs.selectNextTab(tab.index, operation.count);
case operations.TAB_FIRST:
return tabs.selectFirstTab(tab.index, operation.count);
return tabs.selectFirstTab();
case operations.TAB_RELOAD:
return tabs.reload(tab, operation.cache);
case operations.ZOOM_IN: