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

14 lines
310 B
JavaScript
Raw Normal View History

(function ($, document) {
2014-06-17 09:03:14 -07:00
function reloadItems(page) {
2015-06-28 07:45:21 -07:00
Sections.loadLatestChannelItems(page.querySelector('.items'), Dashboard.getCurrentUserId());
}
2015-06-18 21:23:55 -07:00
$(document).on('pagebeforeshowready', "#channelsLatestPage", function () {
reloadItems(this);
});
})(jQuery, document);