mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
Fix lint.
This commit is contained in:
parent
87e8cde031
commit
9f34078f30
@ -218,7 +218,7 @@ export default function KeyBoard(cpu, io, e) {
|
||||
key = keymap[code][evt.shiftKey ? 2 : (evt.ctrlKey ? 1 : 0)];
|
||||
|
||||
if (code != 20 && capslockKeyUsed) {
|
||||
this.capslockKey(evt.getModifierState("CapsLock"));
|
||||
this.capslockKey(evt.getModifierState('CapsLock'));
|
||||
}
|
||||
|
||||
if (capslocked && key >= 0x61 && key <= 0x7A) {
|
||||
|
Loading…
Reference in New Issue
Block a user