KeyCodes.js 660 B

123456789101112131415161718192021222324252627282930313233
  1. "use strict";
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI
  5. * (C) Copyright IBM Corp. 2015, 2017
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. define([], function () {
  9. return {
  10. KEY_DELETE_MAC: 8,
  11. KEY_TAB: 9,
  12. KEY_ENTER: 13,
  13. KEY_CTRL: 17,
  14. KEY_ESCAPE: 27,
  15. KEY_SPACE: 32,
  16. KEY_END: 35,
  17. KEY_HOME: 36,
  18. KEY_LEFT: 37,
  19. KEY_UP: 38,
  20. KEY_RIGHT: 39,
  21. KEY_DOWN: 40,
  22. KEY_DELETE: 46,
  23. KEY_SECOND: 50,
  24. KEY_s: 83,
  25. KEY_OPEN_BRACKET: 219,
  26. KEY_CLOSE_BRACKET: 221,
  27. KEY_h: 72,
  28. KEY_e: 69
  29. };
  30. });
  31. //# sourceMappingURL=KeyCodes.js.map