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

14 lines
293 B
JavaScript
Raw Normal View History

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