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

redo playlist page

This commit is contained in:
Luke Pulverenti 2015-08-20 00:06:49 -04:00
parent 214e8f1e1e
commit fb05bbd6b5
6 changed files with 87 additions and 197 deletions

View file

@ -794,7 +794,7 @@
return "photos.html?parentId=" + id;
}
if (item.Type == "Playlist") {
return "playlistedit.html?id=" + id;
return "itemdetails.html?id=" + id;
}
if (item.Type == "TvChannel") {
return "itemdetails.html?id=" + id;
@ -3092,6 +3092,11 @@
}
}
if (item.CumulativeRunTimeTicks && item.Type != "Series" && item.Type != "Season") {
miscInfo.push(Dashboard.getDisplayTime(item.CumulativeRunTimeTicks));
}
if (item.OfficialRating && item.Type !== "Season" && item.Type !== "Episode") {
miscInfo.push(item.OfficialRating);
}