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

14 lines
294 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());
}
$(document).on('pagebeforeshow', "#channelsLatestPage", function () {
reloadItems(this);
});
})(jQuery, document);