Skip to content

Commit

Permalink
Merge d81ee37 into 1ae1b76
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Varankin committed Apr 13, 2014
2 parents 1ae1b76 + d81ee37 commit a7cabe6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions common.blocks/keyboard/__codes/keyboard__codes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @module keyboard__codes
*/
modules.define('keyboard__codes', function(provide) {

provide(/** @exports */{
BACKSPACE : 8,
TAB : 9,
ENTER : 13,
CAPS_LOCK : 20,
ESC : 27,
SPACE : 32,
PAGE_UP : 33,
PAGE_DOWN : 34,
END : 35,
HOME : 36,
LEFT : 37,
UP : 38,
RIGHT : 39,
DOWN : 40,
INSERT : 41,
DELETE : 42
});

});

0 comments on commit a7cabe6

Please sign in to comment.