key-codes.js 514 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. /**
  6. * @api
  7. */
  8. define([], function () {
  9. 'use strict';
  10. return {
  11. 13: 'enterKey',
  12. 27: 'escapeKey',
  13. 40: 'pageDownKey',
  14. 38: 'pageUpKey',
  15. 32: 'spaceKey',
  16. 9: 'tabKey',
  17. 37: 'pageLeftKey',
  18. 39: 'pageRightKey',
  19. 17: 'ctrlKey',
  20. 18: 'altKey',
  21. 16: 'shiftKey',
  22. 66: 'bKey',
  23. 73: 'iKey',
  24. 85: 'uKey'
  25. };
  26. });