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

added music and game genre image downloading

This commit is contained in:
Luke Pulverenti 2014-01-02 18:07:37 -05:00
parent 1bea110fe6
commit 7ec31feea3
4 changed files with 9 additions and 8 deletions

View file

@ -1,6 +1,6 @@
.detailTableContainer {
width: 100%;
max-width: 1100px;
max-width: 1050px;
text-align: center;
margin: 0 auto;
}
@ -27,14 +27,11 @@
.detailTable td {
border-spacing: 0;
border-top: 1px solid #404040;
border-bottom: 1px solid #404040;
padding: 5px 5px;
}
.detailTable th {
border-spacing: 0;
border-bottom: 1px solid #404040;
padding: 5px;
font-weight: bold;
text-align: left;

View file

@ -34,7 +34,7 @@
shape: "square",
context: 'music',
showTitle: true,
overlayText: true
coverImage: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -33,7 +33,7 @@
shape: "square",
context: 'music',
showTitle: true,
overlayText: true
coverImage: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);

View file

@ -29,9 +29,13 @@
var checkSortOption = $('.radioSortBy:checked', page);
$('.viewSummary', page).html(LibraryBrowser.getViewSummaryHtml(query, checkSortOption)).trigger('create');
html += LibraryBrowser.getPosterDetailViewHtml({
html = LibraryBrowser.getPosterViewHtml({
items: result.Items,
context: "music"
shape: "backdrop",
preferThumb: true,
context: 'music',
showItemCounts: true,
centerText: true
});
html += LibraryBrowser.getPagingHtml(query, result.TotalRecordCount);