This commit is contained in:
James Campos 2011-09-05 15:38:57 -07:00
parent f3f4ee0e55
commit 6cd38a9273
2 changed files with 3 additions and 3 deletions

View File

@ -921,9 +921,9 @@
case 90: case 90:
c = String.fromCharCode(kc); c = String.fromCharCode(kc);
if (e.shiftKey) { if (e.shiftKey) {
return c.toLowerCase();
} else {
return c; return c;
} else {
return c.toLowerCase();
} }
break; break;
default: default:

View File

@ -636,7 +636,7 @@ keybinds =
String.fromCharCode kc 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 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
c = String.fromCharCode kc c = String.fromCharCode kc
if e.shiftKey then c.toLowerCase() else c if e.shiftKey then c else c.toLowerCase()
else else
null null
if key if key