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

add favorite episodes

This commit is contained in:
Luke Pulverenti 2014-05-30 00:16:31 -04:00
parent 8dddfae300
commit d02d29f33e
2 changed files with 11 additions and 6 deletions

View file

@ -193,13 +193,14 @@
shape: 'backdrop',
showTitle: true,
centerText: true,
context: 'home'
context: 'home',
lazy: true
});
html += '</div>';
}
$(elem).html(html).createPosterItemMenus();
$(elem).html(html).trigger('create').createPosterItemMenus();
});
}
@ -222,13 +223,14 @@
items: result.Items,
shape: 'backdrop',
showTitle: true,
centerText: true
centerText: true,
lazy: true
});
html += '</div>';
}
$(elem).html(html).createPosterItemMenus();
$(elem).html(html).trigger('create').createPosterItemMenus();
handleLibraryLinkNavigations(elem);
});
@ -265,12 +267,13 @@
overlayText: screenWidth >= 600,
showTitle: true,
showParentTitle: true,
context: 'home'
context: 'home',
lazy: true
});
html += '</div>';
}
$(elem).html(html).createPosterItemMenus();
$(elem).html(html).trigger('create').createPosterItemMenus();
});
}