1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Backport pull request #6295 from jellyfin-web/release-10.10.z

Enable TV Support for 'Ask to Skip'

Original-merge: 26df03b64c

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: thornbill <thornbill@users.noreply.github.com>
This commit is contained in:
viown 2025-01-22 03:12:37 -05:00 committed by thornbill
parent 133f54c4bc
commit 0065f165cb
3 changed files with 47 additions and 33 deletions

View file

@ -1237,8 +1237,10 @@ export default function (view) {
}
return;
case 'Enter':
playbackManager.playPause(currentPlayer);
showOsd(btnPlayPause);
if (e.target.tagName !== 'BUTTON') {
playbackManager.playPause(currentPlayer);
showOsd(btnPlayPause);
}
return;
}
}