StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
381 B
28 lines
381 B
/*
|
|
* Key Codes (events)
|
|
*/
|
|
import { freeze } from './object';
|
|
var KEY_CODES = freeze({
|
|
SPACE: 32,
|
|
ENTER: 13,
|
|
ESC: 27,
|
|
LEFT: 37,
|
|
UP: 38,
|
|
RIGHT: 39,
|
|
DOWN: 40,
|
|
PAGEUP: 33,
|
|
PAGEDOWN: 34,
|
|
HOME: 36,
|
|
END: 35,
|
|
TAB: 9,
|
|
SHIFT: 16,
|
|
CTRL: 17,
|
|
BACKSPACE: 8,
|
|
ALT: 18,
|
|
PAUSE: 19,
|
|
BREAK: 19,
|
|
INSERT: 45,
|
|
INS: 45,
|
|
DELETE: 46
|
|
});
|
|
export default KEY_CODES; |