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

added studio and people placeholder pages

This commit is contained in:
Luke Pulverenti 2013-04-11 18:09:08 -04:00
parent 6f3b88353e
commit b90eabc00a
17 changed files with 98 additions and 19 deletions

View file

@ -150,6 +150,15 @@
if (item.Type == "BoxSet") {
return "boxset.html?id=" + item.Id;
}
if (item.Type == "Genre") {
return "itembynamedetails.html?genre=" + item.Name;
}
if (item.Type == "Studio") {
return "itembynamedetails.html?studio=" + item.Name;
}
if (item.Type == "Person") {
return "itembynamedetails.html?person=" + item.Name;
}
return item.IsFolder ? (item.Id ? "itemList.html?parentId=" + item.Id : "#") : "itemdetails.html?id=" + item.Id;