mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2025-07-04 18:13:15 -07:00
drum-machine bind key 'v' to .focus();
This commit is contained in:
@ -26,7 +26,8 @@ $(document).ready(function () {
|
||||
makeVolumeSelection('( cancel -- back )');
|
||||
} else if (e.keyCode === 27 && metronomeMenuDisplayed) {
|
||||
makeMetronomeSelection('( cancel -- back )');
|
||||
} else if ([37,38,39,40].includes(e.keyCode)) {
|
||||
} else if (e.keyCode === 86) {
|
||||
$('#volume .ui-slider-handle').focus();
|
||||
}
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user