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

move user image into profile settings

This commit is contained in:
Luke Pulverenti 2014-10-15 23:26:39 -04:00
parent c2ea67d056
commit 53cd8b0eb8
36 changed files with 376 additions and 372 deletions

View file

@ -1,4 +1,4 @@
(function ($, document, apiClient) {
(function ($, document) {
// 30 mins
var cellCurationMinutes = 30;
@ -52,7 +52,7 @@
channelQuery.userId = Dashboard.getCurrentUserId();
channelsPromise = channelsPromise || apiClient.getLiveTvChannels(channelQuery);
channelsPromise = channelsPromise || ApiClient.getLiveTvChannels(channelQuery);
var date = currentDate;
@ -62,7 +62,7 @@
console.log(nextDay);
channelsPromise.done(function (channelsResult) {
apiClient.getLiveTvPrograms({
ApiClient.getLiveTvPrograms({
UserId: Dashboard.getCurrentUserId(),
MaxStartDate: nextDay.toISOString(),
MinEndDate: date.toISOString(),
@ -451,13 +451,13 @@
var page = this;
apiClient.getLiveTvGuideInfo().done(function (guideInfo) {
ApiClient.getLiveTvGuideInfo().done(function (guideInfo) {
setDateRange(page, guideInfo);
});
});
})(jQuery, document, ApiClient);
})(jQuery, document);
(function ($, document, window) {