mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
(function ($, document) {
|
|
|
|
function reloadItems(page) {
|
|
|
|
Sections.loadLatestChannelItems($(".items", page), Dashboard.getCurrentUserId());
|
|
}
|
|
|
|
$(document).on('pagebeforeshowready', "#channelsLatestPage", function () {
|
|
|
|
reloadItems(this);
|
|
|
|
});
|
|
|
|
})(jQuery, document); |