mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 15:32:40 -05:00
Switch from return null to return empty string in keyCodeToScratchKey
This commit is contained in:
parent
cde9ebd6bf
commit
8354774fcf
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ Keyboard.prototype._keyCodeToScratchKey = function (keyCode) {
|
||||||
case 39: return 'right arrow';
|
case 39: return 'right arrow';
|
||||||
case 40: return 'down arrow';
|
case 40: return 'down arrow';
|
||||||
}
|
}
|
||||||
return null;
|
return '';
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue