mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
37 lines
854 B
JavaScript
37 lines
854 B
JavaScript
(function ($, document) {
|
|
|
|
function reloadItems(page) {
|
|
|
|
Dashboard.showLoadingMsg();
|
|
|
|
Sections.loadLatestChannelItems(page.querySelector('.latestItems'), Dashboard.getCurrentUserId()).then(function() {
|
|
Dashboard.hideLoadingMsg();
|
|
}, function () {
|
|
Dashboard.hideLoadingMsg();
|
|
});
|
|
}
|
|
|
|
function loadTab(page, index) {
|
|
|
|
switch (index) {
|
|
|
|
case 0:
|
|
reloadItems(page);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
pageIdOn('pageinit', "channelsPage", function () {
|
|
|
|
var page = this;
|
|
var pages = page.querySelector('neon-animated-pages');
|
|
|
|
pages.addEventListener('tabchange', function (e) {
|
|
loadTab(page, parseInt(e.target.selected));
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery, document); |