jellyfin-web/dashboard-ui/scripts/channelslatest.js
2015-05-19 15:15:40 -04:00

14 lines
293 B
JavaScript

(function ($, document) {
function reloadItems(page) {
Sections.loadLatestChannelItems($(".items", page), Dashboard.getCurrentUserId());
}
$(document).on('pageshowready', "#channelsLatestPage", function () {
reloadItems(this);
});
})(jQuery, document);