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

Replace context menu 'ViewArtist' with 'ViewAlbumArtist' option for players and fix texting bits

This commit is contained in:
ferferga 2020-06-18 10:55:58 +02:00
parent 0e2b960ae7
commit f9119cc2f6
5 changed files with 11 additions and 10 deletions

View file

@ -707,7 +707,7 @@ define(['browser', 'datetime', 'backdrop', 'libraryBrowser', 'listView', 'imageL
if (currentPlayer) {
if (currentPlayer.id === 'htmlaudioplayer' && (currentPlayer._currentTime <= 5 || !playbackManager.previousTrack(currentPlayer))) {
// Cancel this event if doubleclick is fired
if (e.originalEvent.detail > 1 && playbackManager.previousTrack(currentPlayer)) {
if (e.detail > 1 && playbackManager.previousTrack(currentPlayer)) {
return;
}
playbackManager.seekPercent(0, currentPlayer);