Skip to content

Commit

Permalink
feat: add page up and page down as shortcuts (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetancollaud committed May 18, 2021
1 parent 0ef6e15 commit 6834ba6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/client/logic/shortcuts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export function registerShotcuts() {
shortcut('space', next, true)
shortcut('right', next, true)
shortcut('left', prev, true)
shortcut('pageDown', next, true)
shortcut('pageUp', prev, true)
shortcut('up', () => prevSlide(false), true)
shortcut('down', nextSlide, true)
shortcut('shift_left', () => prevSlide(false), true)
Expand Down

0 comments on commit 6834ba6

Please sign in to comment.