Skip to content

Commit

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

provide(/** @exports */{
KEY_BACKSPACE : 8,
KEY_TAB : 9,
KEY_ENTER : 13,
KEY_CAPS_LOCK : 20,
KEY_ESC : 27,
KEY_SPACE : 32,
KEY_PAGE_UP : 33,
KEY_PAGE_DOWN : 34,
KEY_END : 35,
KEY_HOME : 36,
KEY_LEFT : 37,
KEY_UP : 38,
KEY_RIGHT : 39,
KEY_DOWN : 40,
KEY_INSERT : 41,
KEY_DELETE : 42
});

});

0 comments on commit 19b48d4

Please sign in to comment.