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

rework people

This commit is contained in:
Luke Pulverenti 2015-10-04 23:24:24 -04:00
parent 4bc4e81c51
commit 2f11b55964
12 changed files with 27 additions and 518 deletions

View file

@ -2383,7 +2383,7 @@
if (item.Type == "Series" || item.Type == "Season" || item.Type == "BoxSet" || item.MediaType == "Video" || item.MediaType == "Game" || item.MediaType == "Book") {
if (item.UserData.UnplayedItemCount) {
return '<div class="playedIndicator textIndicator">' + item.UserData.UnplayedItemCount + '</div>';
return '<div class="playedIndicator">' + item.UserData.UnplayedItemCount + '</div>';
}
if (item.Type != 'TvChannel') {
@ -2399,7 +2399,7 @@
getGroupCountIndicator: function (item) {
if (item.ChildCount) {
return '<div class="playedIndicator textIndicator">' + item.ChildCount + '</div>';
return '<div class="playedIndicator">' + item.ChildCount + '</div>';
}
return '';