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

hide people tab for ibn items

This commit is contained in:
Luke Pulverenti 2013-06-27 14:40:50 -04:00
parent 9a6be151e3
commit 33b8c86948
4 changed files with 23 additions and 12 deletions

View file

@ -63,6 +63,12 @@
setFieldVisibilities(page, item);
fillItemInfo(page, item);
if (item.Type == "Person" || item.Type == "Studio" || item.Type == "MusicGenre" || item.Type == "Genre" || item.Type == "Artist") {
$('#peopleTab', page).hide();
} else {
$('#peopleTab', page).show();
}
Dashboard.hideLoadingMsg();
});