-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
keystack/src/utils/keyboard.js
Lines 21 to 26 in 0c8d251
| /** @todo use key or code, but not keycode */ | |
| const onKeyUp = (event) => { | |
| if (event.keyCode === 90) { | |
| // z | |
| octave = Math.max(--octave, 0) | |
| } else if (event.keyCode === 88) { |