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

fixed series/album title in now playing bar, played/unplayed toggle

This commit is contained in:
Techywarrior 2013-04-01 13:26:13 -07:00
parent 10aacca355
commit 51e8bf14c7
3 changed files with 40 additions and 14 deletions

View file

@ -114,7 +114,7 @@
}
html += "<div><img class='nowPlayingBarImage ' alt='' title='' src='" + url + "' style='height:36px;display:inline-block;' /></div>";
html += '<div>' + name + '<br/>' + series_name + '</div>';
html += '<div>' + series_name + '<br/>' + name + '</div>';
$('#mediaInfo', nowPlayingBar).html(html);
},