jellyfin-web/dashboard-ui/scripts/channelslatest.js

14 lines
293 B
JavaScript
Raw Normal View History

(function ($, document) {
2014-06-17 09:03:14 -07:00
function reloadItems(page) {
2014-06-23 09:05:19 -07:00
Sections.loadLatestChannelItems($(".items", page), Dashboard.getCurrentUserId());
}
2015-05-19 12:15:40 -07:00
$(document).on('pageshowready', "#channelsLatestPage", function () {
reloadItems(this);
});
})(jQuery, document);