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

support editing artist/album for music video

This commit is contained in:
Luke Pulverenti 2013-07-10 16:10:55 -04:00
parent f078fd9a7c
commit 68bba9b073

View file

@ -138,13 +138,17 @@
}
if (item.Type == "Audio") {
$('#fldAlbumArtist', page).show();
} else {
$('#fldAlbumArtist', page).hide();
}
if (item.Type == "Audio" || item.Type == "MusicVideo") {
$('#fldArtist', page).show();
$('#fldAlbum', page).show();
$('#fldAlbumArtist', page).show();
} else {
$('#fldArtist', page).hide();
$('#fldAlbum', page).hide();
$('#fldAlbumArtist', page).hide();
}
if (item.Type == "Movie" || item.Type == "Trailer" || item.Type == "Person" || item.Type == "Series" || item.Type == "Season" || item.Type == "Episode" || item.Type == "MusicVideo") {