update to vs 2013
This commit is contained in:
@@ -279,7 +279,7 @@
|
||||
SortOrder: "Descending",
|
||||
MediaTypes: "Video",
|
||||
Filters: "IsResumable",
|
||||
Limit: (screenWidth >= 1200 ? 9 : 6),
|
||||
Limit: screenWidth >= 1920 ? 9 : (screenWidth >= 1200 ? 9 : 6),
|
||||
Recursive: true,
|
||||
Fields: "PrimaryImageAspectRatio",
|
||||
CollapseBoxSetItems: false,
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
var options = {
|
||||
IncludeItemTypes: "Audio",
|
||||
Limit: screenWidth >= 1920 ? 15 : (screenWidth >= 1200 ? 10 : 12),
|
||||
Limit: screenWidth >= 1920 ? 18 : (screenWidth >= 1200 ? 10 : 12),
|
||||
Fields: "PrimaryImageAspectRatio",
|
||||
ParentId: parentId
|
||||
};
|
||||
@@ -34,7 +34,7 @@
|
||||
SortBy: "DatePlayed",
|
||||
SortOrder: "Descending",
|
||||
IncludeItemTypes: "Audio",
|
||||
Limit: screenWidth >= 1920 ? 5 : (screenWidth >= 1200 ? 5 : 6),
|
||||
Limit: screenWidth >= 1920 ? 6 : (screenWidth >= 1200 ? 5 : 6),
|
||||
Recursive: true,
|
||||
Fields: "PrimaryImageAspectRatio,AudioInfo",
|
||||
Filters: "IsPlayed",
|
||||
@@ -64,7 +64,7 @@
|
||||
SortBy: "PlayCount",
|
||||
SortOrder: "Descending",
|
||||
IncludeItemTypes: "Audio",
|
||||
Limit: screenWidth >= 1920 ? 10 : (screenWidth >= 1200 ? 10 : 12),
|
||||
Limit: screenWidth >= 1920 ? 12 : (screenWidth >= 1200 ? 10 : 12),
|
||||
Recursive: true,
|
||||
Fields: "PrimaryImageAspectRatio,AudioInfo",
|
||||
Filters: "IsPlayed",
|
||||
|
||||
Reference in New Issue
Block a user