Skip to content

Commit

Permalink
Add [Shift + Space] support for "go back"
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuheechul committed Jan 16, 2015
1 parent ae176f9 commit 6e0059c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/hyhyhy/structure/_assets/javascripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,7 @@ hyhyhy.plugins.keys = function(deck, options) {
!isHorizontal && e.which == 40 // DOWN
) && deck.next();
(
e.which == 32 && e.shiftKey || // SPACE WITH SHIFT KEY
e.which == 33 || // PAGE UP
e.which == 75 || // k
isHorizontal && e.which == 37 || // LEFT
Expand Down

0 comments on commit 6e0059c

Please sign in to comment.