Merge branch 'master' into QR

This commit is contained in:
James Campos 2011-09-05 16:27:31 -07:00
commit ce9d6efcd8
2 changed files with 1 additions and 4 deletions

View File

@ -892,7 +892,6 @@
case 55:
case 56:
case 57:
return String.fromCharCode(kc);
case 65:
case 66:
case 67:

View File

@ -632,9 +632,7 @@ keybinds =
'Right'
when 40
'Down'
when 48, 49, 50, 51, 52, 53, 54, 55, 56, 57 #0-9
String.fromCharCode kc
when 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 #A-Z
when 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90 #0-9, A-Z
c = String.fromCharCode kc
if e.shiftKey then c else c.toLowerCase()
else