de22a644d6
This used to be a feature in the Flash client and this is necessary for presentation remotes to work with the HTML client.
24 lines
408 B
JavaScript
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,
|
|
};
|