cleanup and stype fixes...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-11-05 01:08:06 +03:00
parent 1c507a8915
commit 2a56f82eec

View File

@ -69,6 +69,7 @@ module.SPECIAL_KEYS = {
// Punctuation...
// top row...
192: '`', /* Numbers */ 189: '-', 187: '=',
// right side of keyboard...
219: '[', 221: ']', 220: '\\',
186: ';', 222: '\'',
@ -78,14 +79,17 @@ module.SPECIAL_KEYS = {
var SHIFT_KEYS =
module.SHIFT_KEYS = {
'`': '~', '-': '_', '=':'+',
// Number row...
'#1': '!', '#2': '@', '#3': '#', '#4': '$', '#5': '%',
'#6': '^', '#7': '&', '#8': '*', '#9': '(', '#0': ')',
// top row...
'`': '~', /* Numbers */ '-': '_', '=': '+',
// right side of keyboard...
'[': '{', ']': '}', '\\': '|',
';': ':', '\'': '"',
',': '<', '.': '>', '/': '?'
',': '<', '.': '>', '/': '?',
}