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:
parent
7c33b7a030
commit
363f71b573
1 changed files with 4 additions and 1 deletions
|
@ -115,6 +115,9 @@
|
|||
}
|
||||
|
||||
html += "<div><img class='nowPlayingBarImage ' alt='' title='' src='" + url + "' style='height:36px;display:inline-block;' /></div>";
|
||||
if (item.Type == "Movie")
|
||||
html += '<div>' + name + '<br/>' + series_name + '</div>';
|
||||
else
|
||||
html += '<div>' + series_name + '<br/>' + name + '</div>';
|
||||
|
||||
$('#mediaInfo', nowPlayingBar).html(html);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue