Skip to content

Commit

Permalink
Fix previousTab keybinding. (#372)
Browse files Browse the repository at this point in the history
The key bindings specified prevTab function, but the function is
actually named previousTab.
  • Loading branch information
charkins authored and pi0 committed May 9, 2017
1 parent d10d794 commit 26c9a8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/tabs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
tabindex="0"
:aria-setsize="tabs.length"
:aria-posinset="currentTab + 1"
@keydown.left="prevTab"
@keydown.up="prevTab"
@keydown.left="previousTab"
@keydown.up="previousTab"
@keydown.right="nextTab"
@keydown.down="nextTab"
@keydown.shift.left="setTab(-1,false,1)"
Expand Down

0 comments on commit 26c9a8e

Please sign in to comment.