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

3.0.5340.20849

This commit is contained in:
Luke Pulverenti 2014-08-15 12:35:41 -04:00
parent 668f8ba11f
commit 4d679e90a4
18 changed files with 276 additions and 133 deletions

View file

@ -562,7 +562,7 @@
var options = {
userId: Dashboard.getCurrentUserId(),
limit: item.Type == "MusicAlbum" ? 4 : 5,
limit: 5,
fields: "PrimaryImageAspectRatio,UserData"
};
@ -724,7 +724,11 @@
if (item.Type == "MusicAlbum") {
$('#childrenContent', page).html(LibraryBrowser.getSongTableHtml(result.Items, { showArtist: true })).trigger('create');
$('#childrenContent', page).html(LibraryBrowser.getListViewHtml({
items: result.Items,
smallIcon: true
})).trigger('create').createCardMenus();
} else {
@ -760,7 +764,7 @@
});
}
$('#childrenContent', page).html(html).createCardMenus();
$('#childrenContent', page).html(html).trigger('create').createCardMenus();
if (item.Type == "BoxSet") {
@ -996,7 +1000,12 @@
$('#themeSongsCollapsible', page).show();
$('#themeSongsContent', page).html(LibraryBrowser.getSongTableHtml(items, { showArtist: true, showAlbum: true, showAlbumArtist: true })).trigger('create');
var html = LibraryBrowser.getListViewHtml({
items: items,
smallIcon: true
});
$('#themeSongsContent', page).html(html).trigger('create');
} else {
$('#themeSongsCollapsible', page).hide();
}