Skip to content
Snippets Groups Projects
Unverified Commit c7c29e37 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #8368 from felcaetano/enable-change-slides-with-page-up-down

Swapping PAGE_UP and PAGE_DOWN key bindings
parents e6b8f0c0 e13cf362
No related branches found
No related tags found
No related merge requests found
......@@ -104,11 +104,11 @@ class PresentationToolbar extends PureComponent {
if (isBody) {
switch (which) {
case KEY_CODES.ARROW_LEFT:
case KEY_CODES.PAGE_DOWN:
case KEY_CODES.PAGE_UP:
this.previousSlideHandler();
break;
case KEY_CODES.ARROW_RIGHT:
case KEY_CODES.PAGE_UP:
case KEY_CODES.PAGE_DOWN:
this.nextSlideHandler();
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment