From e13cf362b28f1895caf045df5f15c28ba9e7e11f Mon Sep 17 00:00:00 2001 From: felcaetano Date: Tue, 26 Nov 2019 19:00:28 -0300 Subject: [PATCH] Swapping PAGE_UP and PAGE_DOWN key bindings Swapping the keys as requested by @kaitkrull to fit most of the remotes. --- .../presentation/presentation-toolbar/component.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/component.jsx b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/component.jsx index 7834c999f7..6aa3414d9d 100755 --- a/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/presentation/presentation-toolbar/component.jsx @@ -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: