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

move year below title in now playing bar for movies

This commit is contained in:
Techywarrior 2013-04-02 15:13:48 -07:00
parent 7c33b7a030
commit 363f71b573

View file

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