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

chromecast updates

This commit is contained in:
Luke Pulverenti 2014-08-19 18:28:35 -04:00
parent 2e25b47fb2
commit f6995379a2
5 changed files with 41 additions and 161 deletions

View file

@ -58,18 +58,15 @@
updateFilterControls(page);
html += LibraryBrowser.getSongTableHtml(result.Items, {
showAlbum: true,
showArtist: true,
showAlbumArtist: true,
enableColumnSorting: true,
sortBy: query.SortBy,
sortOrder: query.SortOrder
html += LibraryBrowser.getListViewHtml({
items: result.Items,
smallIcon: true,
showIndex: true
});
html += pagingHtml;
$('#items', page).html(html).trigger('create');
$('#items', page).html(html).trigger('create').createCardMenus();
$('.btnNextPage', page).on('click', function () {
query.StartIndex += query.Limit;