bigbluebutton-Github/bigbluebutton-html5/imports/utils/keyCodes.js
felcaetano de22a644d6 Added event listener to change slides with Page Up and Page Down
This used to be a feature in the Flash client and this is necessary for presentation remotes to work with the HTML client.
2019-09-18 14:12:05 -03:00

24 lines
408 B
JavaScript

export const SPACE = 32;
export const ENTER = 13;
export const TAB = 9;
export const ESCAPE = 27;
export const ARROW_UP = 38;
export const ARROW_DOWN = 40;
export const ARROW_RIGHT = 39;
export const ARROW_LEFT = 37;
export const PAGE_UP = 33;
export const PAGE_DOWN = 34;
export default {
SPACE,
ENTER,
TAB,
ESCAPE,
ARROW_UP,
ARROW_DOWN,
ARROW_RIGHT,
ARROW_LEFT,
PAGE_UP,
PAGE_DOWN,
};