mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update item counts
This commit is contained in:
parent
2c4c735acf
commit
4172283ce1
3 changed files with 12 additions and 4 deletions
|
@ -72,7 +72,8 @@
|
|||
showItemCounts: true,
|
||||
centerText: true,
|
||||
lazy: true,
|
||||
overlayPlayButton: true
|
||||
overlayPlayButton: true,
|
||||
context: 'movies'
|
||||
});
|
||||
}
|
||||
else if (viewStyle == "ThumbCard") {
|
||||
|
@ -84,7 +85,8 @@
|
|||
showItemCounts: true,
|
||||
cardLayout: true,
|
||||
showTitle: true,
|
||||
lazy: true
|
||||
lazy: true,
|
||||
context: 'movies'
|
||||
});
|
||||
}
|
||||
else if (viewStyle == "PosterCard") {
|
||||
|
@ -94,7 +96,8 @@
|
|||
showItemCounts: true,
|
||||
lazy: true,
|
||||
cardLayout: true,
|
||||
showTitle: true
|
||||
showTitle: true,
|
||||
context: 'movies'
|
||||
});
|
||||
}
|
||||
else if (viewStyle == "Poster") {
|
||||
|
@ -104,7 +107,8 @@
|
|||
centerText: true,
|
||||
showItemCounts: true,
|
||||
lazy: true,
|
||||
overlayPlayButton: true
|
||||
overlayPlayButton: true,
|
||||
context: 'movies'
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -56,6 +56,7 @@
|
|||
items: result.Items,
|
||||
shape: "backdrop",
|
||||
showTitle: false,
|
||||
context: 'movies',
|
||||
preferThumb: true,
|
||||
showItemCounts: true,
|
||||
centerText: true,
|
||||
|
|
|
@ -67,6 +67,7 @@
|
|||
shape: "backdrop",
|
||||
preferThumb: true,
|
||||
showItemCounts: true,
|
||||
context: 'music',
|
||||
lazy: true,
|
||||
centerText: true,
|
||||
overlayPlayButton: true
|
||||
|
@ -78,6 +79,7 @@
|
|||
items: result.Items,
|
||||
shape: "backdrop",
|
||||
preferThumb: true,
|
||||
context: 'music',
|
||||
showItemCounts: true,
|
||||
cardLayout: true,
|
||||
lazy: true,
|
||||
|
@ -88,6 +90,7 @@
|
|||
html = LibraryBrowser.getPosterViewHtml({
|
||||
items: result.Items,
|
||||
shape: "portrait",
|
||||
context: 'music',
|
||||
centerText: true,
|
||||
showItemCounts: true,
|
||||
lazy: true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue