fixed music videos collapsible visibility

This commit is contained in:
Luke Pulverenti 2013-07-30 17:02:28 -04:00
parent 882bc426ad
commit 3ddd2bac8d
2 changed files with 2 additions and 2 deletions

View File

@ -174,7 +174,7 @@
if (item.Type == "MusicAlbum") { if (item.Type == "MusicAlbum") {
renderMusicVideos(page, item); renderMusicVideos(page, item);
} else { } else {
$('#musicVideosCollapsible', page).show(); $('#musicVideosCollapsible', page).hide();
} }
renderThemeSongs(page, item); renderThemeSongs(page, item);

View File

@ -1518,7 +1518,7 @@
} }
} }
if (item.OfficialRating) { if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
miscInfo.push(item.OfficialRating); miscInfo.push(item.OfficialRating);
} }