mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Update src/components/nowPlayingBar/nowPlayingBar.js
Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
This commit is contained in:
parent
108e00ac45
commit
b1161facc0
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ function bindEvents(elem) {
|
|||
|
||||
elem.querySelector('.previousTrackButton').addEventListener('click', function (e) {
|
||||
if (currentPlayer) {
|
||||
if ( playbackManager.isPlayingAudio(currentPlayer) ) {
|
||||
if (playbackManager.isPlayingAudio(currentPlayer)) {
|
||||
// Cancel this event if doubleclick is fired. The actual previousTrack will be processed by the 'dblclick' event
|
||||
if (e.detail > 1 ) {
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue