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/homelatest.js

37 lines
937 B
JavaScript
Raw Normal View History

2014-06-23 12:05:19 -04:00
(function ($, document, apiClient) {
function loadSections(page, userId) {
var i, length;
var sectionCount = 3;
var elem = $('.sections', page);
if (!elem.html().length) {
var html = '';
for (i = 0, length = sectionCount; i < length; i++) {
html += '<div class="homePageSection section' + i + '"></div>';
}
elem.html(html);
}
2014-09-30 00:47:30 -04:00
var context = 'home-latest';
Sections.loadRecentlyAdded($('.section0', page), userId, context);
2014-06-23 12:05:19 -04:00
Sections.loadLatestLiveTvRecordings($(".section1", page), userId);
Sections.loadLatestChannelItems($(".section2", page), userId);
}
$(document).on('pagebeforeshow', "#homeLatestPage", function () {
var page = this;
var userId = Dashboard.getCurrentUserId();
loadSections(page, userId);
});
})(jQuery, document, ApiClient);