mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
support new genre images
This commit is contained in:
parent
f06105e688
commit
722c5a92f3
4 changed files with 16 additions and 5 deletions
Binary file not shown.
Before Width: | Height: | Size: 138 B After Width: | Height: | Size: 144 B |
|
@ -77,7 +77,7 @@
|
||||||
z-index: 99998;
|
z-index: 99998;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: 270px;
|
width: 270px;
|
||||||
bottom: 45px;
|
bottom: 46px;
|
||||||
left: -290px;
|
left: -290px;
|
||||||
border: 1px solid #666;
|
border: 1px solid #666;
|
||||||
background: #000;
|
background: #000;
|
||||||
|
|
|
@ -29,9 +29,13 @@
|
||||||
var checkSortOption = $('.radioSortBy:checked', page);
|
var checkSortOption = $('.radioSortBy:checked', page);
|
||||||
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
|
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
|
||||||
|
|
||||||
html += LibraryBrowser.getPosterDetailViewHtml({
|
html = LibraryBrowser.getPosterViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
context: "movies"
|
shape: "backdrop",
|
||||||
|
preferThumb: true,
|
||||||
|
context: 'movies',
|
||||||
|
showItemCounts: true,
|
||||||
|
centerText: true
|
||||||
});
|
});
|
||||||
|
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
||||||
|
|
|
@ -29,9 +29,16 @@
|
||||||
var checkSortOption = $('.radioSortBy:checked', page);
|
var checkSortOption = $('.radioSortBy:checked', page);
|
||||||
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
|
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
|
||||||
|
|
||||||
html += LibraryBrowser.getPosterDetailViewHtml({
|
html += LibraryBrowser.getPosterViewHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
context: "tv"
|
useAverageAspectRatio: true,
|
||||||
|
shape: "backdrop",
|
||||||
|
showTitle: false,
|
||||||
|
overlayText: false,
|
||||||
|
context: 'tv',
|
||||||
|
preferThumb: true,
|
||||||
|
showItemCounts: true,
|
||||||
|
centerText: true
|
||||||
});
|
});
|
||||||
|
|
||||||
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue