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

update timer listings

This commit is contained in:
Luke Pulverenti 2016-10-04 01:15:39 -04:00
parent c2290dd41d
commit cf3aa152cf
39 changed files with 368 additions and 287 deletions

View file

@ -29,6 +29,11 @@
appSettings.cameraUploadServers(cameraUploadServers);
if (window.MainActivity) {
// TODO: isolate into android app
MainActivity.authorizeStorage();
}
Dashboard.hideLoadingMsg();
}

View file

@ -1113,7 +1113,8 @@
showIndexNumber: true,
playFromHere: true,
action: 'playallfromhere',
lazy: true
image: false,
artist: false
});
isList = true;
}

View file

@ -59,7 +59,8 @@
});
upcomingRecordingsPromise = ApiClient.getLiveTvTimers({
IsActive: false
IsActive: false,
IsScheduled: true
});
};

View file

@ -14,7 +14,7 @@
options = options || {};
var html = '';
html += '<div is="emby-itemscontainer" class="itemsContainer vertical-list">';
html += '<div is="emby-itemscontainer" class="itemsContainer vertical-list" data-contextmenu="false">';
html += listView.getListViewHtml({
items: items,
enableUserDataButtons: false,
@ -22,7 +22,8 @@
showProgramDateTime: true,
mediaInfo: false,
action: 'none',
moreButton: false
moreButton: false,
recordButton: false
});
html += '</div>';
@ -32,7 +33,7 @@
function renderSchedule(page) {
ApiClient.getLiveTvPrograms({
ApiClient.getLiveTvTimers({
UserId: ApiClient.getCurrentUserId(),
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Thumb",
@ -40,8 +41,7 @@
EnableTotalRecordCount: false,
EnableUserData: false,
SeriesTimerId: params.id,
Fields: "ChannelInfo",
limit: 100
Fields: "ChannelInfo"
}).then(function (result) {