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:
parent
6f3b88353e
commit
b90eabc00a
17 changed files with 98 additions and 19 deletions
|
@ -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;
|
||||
|
||||
|
|
1
dashboard-ui/scripts/moviepeople.js
Normal file
1
dashboard-ui/scripts/moviepeople.js
Normal file
|
@ -0,0 +1 @@
|
|||
|
|
@ -74,7 +74,8 @@
|
|||
|
||||
$('#trailerItems', page).html(LibraryBrowser.getPosterViewHtml({
|
||||
items: result.Items,
|
||||
useAverageAspectRatio: true
|
||||
useAverageAspectRatio: true,
|
||||
showNewIndicator: false
|
||||
}));
|
||||
|
||||
});
|
||||
|
|
1
dashboard-ui/scripts/moviestudios.js
Normal file
1
dashboard-ui/scripts/moviestudios.js
Normal file
|
@ -0,0 +1 @@
|
|||
|
1
dashboard-ui/scripts/tvstudios.js
Normal file
1
dashboard-ui/scripts/tvstudios.js
Normal file
|
@ -0,0 +1 @@
|
|||
|
Loading…
Add table
Add a link
Reference in a new issue