File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ const shortcuts = {
24
24
8 : ( ) => ( audioPlayerEl . currentTime = audioPlayerEl . duration * 0.8 ) ,
25
25
9 : ( ) => ( audioPlayerEl . currentTime = audioPlayerEl . duration * 0.9 ) ,
26
26
$ : ( ) => ( audioPlayerEl . currentTime = audioPlayerEl . duration ) ,
27
- j : ( ) => ( audioPlayerEl . currentTime -= 10 ) ,
28
- l : ( ) => ( audioPlayerEl . currentTime += 10 ) ,
29
- ArrowRight : ( ) => setVolume ( audioPlayerEl . volume + 0.1 ) ,
30
- ArrowLeft : ( ) => setVolume ( audioPlayerEl . volume - 0.1 ) ,
27
+ ArrowLeft : ( ) => ( audioPlayerEl . currentTime -= 10 ) ,
28
+ ArrowRight : ( ) => ( audioPlayerEl . currentTime += 10 ) ,
29
+ ArrowUp : ( ) => setVolume ( audioPlayerEl . volume + 0.1 ) ,
30
+ ArrowDown : ( ) => setVolume ( audioPlayerEl . volume - 0.1 ) ,
31
31
i : expand ,
32
32
I : collapse ,
33
33
"/" : ( ) => searchInputEl . focus ( ) ,
You can’t perform that action at this time.
0 commit comments