Skip to content

Commit

Permalink
Merge pull request #18 from ryuheechul/patch-2
Browse files Browse the repository at this point in the history
Add [Shift + Space] support for "go back" by @ryuheechul
  • Loading branch information
maciejczyzewski committed Jan 16, 2015
2 parents ae176f9 + 6e0059c commit 07faf7a
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 07faf7a

Please sign in to comment.