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

sync updates

This commit is contained in:
Luke Pulverenti 2015-01-23 01:15:15 -05:00
parent 2ab7e15656
commit 9b452f3b53
85 changed files with 421 additions and 505 deletions

View file

@ -642,7 +642,7 @@
overlayText: item.Type != "MusicAlbum"
});
$('#similarContent', page).html(html).createCardMenus();
$('#similarContent', page).html(html).lazyChildren();
});
}
@ -761,6 +761,7 @@
promise.done(function (result) {
var html = '';
var trigger = false;
if (item.Type == "MusicAlbum") {
@ -773,6 +774,7 @@
playFromHere: true,
defaultAction: 'playallfromhere'
});
trigger = true;
}
else if (item.Type == "Series") {
@ -805,7 +807,11 @@
});
}
$('.childrenItemsContainer', page).html(html).trigger('create').createCardMenus();
var elem = $('.childrenItemsContainer', page).html(html).lazyChildren();
if (trigger) {
elem.trigger('create');
}
if (item.Type == "BoxSet") {