NOTE: this download will not include the actual '+ + 'images. at this point, images should be added manually.
'+ + '') + + // setup the data... + $(generateMagazineDownload) + }, + }, }, // ignore all keys except Esc here... diff --git a/lib/keyboard.js b/lib/keyboard.js index 3bbc15f..cdf48fa 100755 --- a/lib/keyboard.js +++ b/lib/keyboard.js @@ -14,7 +14,7 @@ // toKeyName() and toKeyCode() for a more uniform access.
//
// NOTE: these are un-shifted ASCII key names rather than actual key
-// code values.
+// code translations.
// NOTE: ASCII letters (capital) are not present because they actually
// match their key codes and are accessible via:
// String.fromCharCode() or .charCodeAt(0)
@@ -38,16 +38,16 @@ var _SPECIAL_KEYS = {
114: 'F3', 118: 'F7', 122: 'F11',
115: 'F4', 119: 'F8', 123: 'F12',
- // number row..
+ // Number row..
49: '1', 50: '2', 51: '3', 52: '4', 53: '5',
54: '6', 55: '7', 56: '8', 57: '9', 48: '0',
- // punctuation...
+ // Punctuation...
// top row...
- 192: '`', 189: '-', 187: '=',
+ 192: '`', /* Numbers */ 189: '-', 187: '=',
// right side of keyboard...
- 219: '[', 221: ']', 220: '\\',
- 186: ';', 222: '\'',
+ 219: '[', 221: ']', 220: '\\',
+ 186: ';', 222: '\'',
188: ',', 190: '.', 191: '/',
}