Keyboard shortcut to go to current song (#2029)
* feat(hotkeys): keyboard-shortcut-for-current-song - #1336 Signed-off-by: Pavithra Nair <pmpavithranair@gmail.com> * Fix previously mentioned bugs Signed-off-by: Pavithra Nair <pmpavithranair@gmail.com> Co-authored-by: Pavithra Nair <pmpavithranair@gmail.com>
This commit is contained in:
@@ -25,7 +25,9 @@ const keyHandlers = (audioInstance, playerState) => {
|
||||
PREV_SONG: (e) => {
|
||||
if (!e.metaKey && prevSong()) audioInstance && audioInstance.playPrev()
|
||||
},
|
||||
|
||||
CURRENT_SONG: () => {
|
||||
window.location.href = `#/album/${playerState.current?.song.albumId}/show`
|
||||
},
|
||||
NEXT_SONG: (e) => {
|
||||
if (!e.metaKey && nextSong()) audioInstance && audioInstance.playNext()
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user