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

update channel display

This commit is contained in:
Luke Pulverenti 2016-05-17 15:18:50 -04:00
parent 489dc97aab
commit 22a0210633
5 changed files with 9 additions and 14 deletions

View file

@ -24,12 +24,10 @@
function loadLatest(page, userId, parentId) {
var limit = 18;
var options = {
IncludeItemTypes: "Movie",
Limit: limit,
Limit: 18,
Fields: "PrimaryImageAspectRatio,MediaSourceCount,SyncInfo",
ParentId: parentId,
ImageTypeLimit: 1,
@ -214,8 +212,8 @@
var url = ApiClient.getUrl("Movies/Recommendations", {
userId: userId,
categoryLimit: screenWidth >= 1200 ? 4 : 3,
ItemLimit: screenWidth >= 1920 ? 9 : (screenWidth >= 1600 ? 8 : (screenWidth >= 1200 ? 7 : 6)),
categoryLimit: 6,
ItemLimit: screenWidth >= 1920 ? 8 : (screenWidth >= 1600 ? 7 : (screenWidth >= 1200 ? 6 : 5)),
Fields: "PrimaryImageAspectRatio,MediaSourceCount,SyncInfo",
ImageTypeLimit: 1,
EnableImageTypes: "Primary,Backdrop,Banner,Thumb"

View file

@ -51,13 +51,6 @@
text: Globalize.translate('MobileSyncFeatureDescription')
});
}
else if (AppInfo.isNativeApp) {
list.push({
name: Globalize.translate('HeaderCloudSync'),
icon: 'sync',
text: Globalize.translate('CloudSyncFeatureDescription')
});
}
else {
list.push({
name: Globalize.translate('HeaderCinemaMode'),