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

support artists tag value

This commit is contained in:
Luke Pulverenti 2015-01-27 17:45:59 -05:00
parent 19374a0bb2
commit a5288c2eaf
3 changed files with 12 additions and 7 deletions

View file

@ -339,11 +339,11 @@
renderCast(page, item, context, 6);
}
if (!item.PartCount || item.PartCount < 2) {
$('#additionalPartsCollapsible', page).addClass('hide');
} else {
if (item.PartCount && item.PartCount > 1) {
$('#additionalPartsCollapsible', page).removeClass('hide');
renderAdditionalParts(page, item, user);
} else {
$('#additionalPartsCollapsible', page).addClass('hide');
}
$('#themeSongsCollapsible', page).hide();