aboutsummaryrefslogtreecommitdiff
path: root/src/background/actions
diff options
context:
space:
mode:
authorDaniel Campoverde <alx@sillybytes.net>2017-10-29 22:03:46 -0500
committerDaniel Campoverde <alx@sillybytes.net>2017-10-29 22:03:46 -0500
commitd0df1a05a17fd3b30eba215b0f163042878a56b2 (patch)
treed802ef7ad57b906bd49c0a0a7dbf47cd9163b254 /src/background/actions
parent2c97f8a4f3b31d38922783b8f5e6237da33ce86b (diff)
Clean up TAB_FIRST operation
Diffstat (limited to 'src/background/actions')
-rw-r--r--src/background/actions/operation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/actions/operation.js b/src/background/actions/operation.js
index 7c0df4e..074157b 100644
--- a/src/background/actions/operation.js
+++ b/src/background/actions/operation.js
@@ -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: