mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update card layouts
This commit is contained in:
parent
99ae92bad7
commit
3a7fbb7777
14 changed files with 155 additions and 58 deletions
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.1.94",
|
"version": "1.1.95",
|
||||||
"_release": "1.1.94",
|
"_release": "1.1.95",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.1.94",
|
"tag": "1.1.95",
|
||||||
"commit": "dfd0b14c1af141e548fe2cee92a1f86967c50e8f"
|
"commit": "e8acc2b7fb936b9e8d54a1eda726a16806258639"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
"_source": "https://github.com/MediaBrowser/Emby.ApiClient.Javascript.git",
|
||||||
"_target": "^1.1.51",
|
"_target": "^1.1.51",
|
||||||
|
|
|
@ -6,7 +6,10 @@
|
||||||
var localData;
|
var localData;
|
||||||
|
|
||||||
function updateCache() {
|
function updateCache() {
|
||||||
cache.put('data', new Response(JSON.stringify(localData)));
|
|
||||||
|
if (cache) {
|
||||||
|
cache.put('data', new Response(JSON.stringify(localData)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
myStore.setItem = function (name, value) {
|
myStore.setItem = function (name, value) {
|
||||||
|
@ -38,10 +41,13 @@
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
caches.open('embydata').then(function (result) {
|
if (self.caches) {
|
||||||
cache = result;
|
|
||||||
localData = {};
|
caches.open('embydata').then(function (result) {
|
||||||
});
|
cache = result;
|
||||||
|
localData = {};
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.log('Error opening cache: ' + err);
|
console.log('Error opening cache: ' + err);
|
||||||
|
|
46
dashboard-ui/bower_components/emby-apiclient/sync/localsync.js
vendored
Normal file
46
dashboard-ui/bower_components/emby-apiclient/sync/localsync.js
vendored
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
define(['appSettings', 'connectionManager'], function (appSettings, connectionManager) {
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
var syncPromise;
|
||||||
|
|
||||||
|
return {
|
||||||
|
|
||||||
|
sync: function (options) {
|
||||||
|
|
||||||
|
if (syncPromise) {
|
||||||
|
return syncPromise;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
require(['multiserversync'], function (MultiServerSync) {
|
||||||
|
|
||||||
|
options = options || {};
|
||||||
|
|
||||||
|
options.cameraUploadServers = appSettings.cameraUploadServers();
|
||||||
|
|
||||||
|
syncPromise = new MultiServerSync(connectionManager).sync(options).then(function () {
|
||||||
|
|
||||||
|
syncPromise = null;
|
||||||
|
resolve();
|
||||||
|
|
||||||
|
}, function () {
|
||||||
|
|
||||||
|
syncPromise = null;
|
||||||
|
reject();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
getSyncStatus: function () {
|
||||||
|
|
||||||
|
if (syncPromise != null) {
|
||||||
|
return 'Syncing';
|
||||||
|
}
|
||||||
|
return 'Idle';
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
});
|
|
@ -14,12 +14,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.360",
|
"version": "1.4.362",
|
||||||
"_release": "1.4.360",
|
"_release": "1.4.362",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.360",
|
"tag": "1.4.362",
|
||||||
"commit": "a6e44673685b3060947662be41de5cb36253320a"
|
"commit": "74f60991dce95403508b7eb84ec362226f574bc9"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.1",
|
"_target": "^1.2.1",
|
||||||
|
|
|
@ -53,7 +53,7 @@ button {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cardPadder-backdrop, .cardPadder-smallBackdrop, .cardPadder-overflowBackdrop {
|
.cardPadder-backdrop, .cardPadder-smallBackdrop, .cardPadder-overflowBackdrop, .cardPadder-overflowSmallBackdrop {
|
||||||
padding-bottom: 56.25%;
|
padding-bottom: 56.25%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -402,6 +402,10 @@ button {
|
||||||
max-width: 400px;
|
max-width: 400px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
.overflowSquareCard-scalable {
|
.overflowSquareCard-scalable {
|
||||||
width: 42%;
|
width: 42%;
|
||||||
max-width: 200px;
|
max-width: 200px;
|
||||||
|
@ -438,6 +442,10 @@ button {
|
||||||
.overflowSquareCard-scalable {
|
.overflowSquareCard-scalable {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 40%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 640px) {
|
@media all and (min-width: 640px) {
|
||||||
|
@ -449,6 +457,10 @@ button {
|
||||||
.overflowBackdropCard-scalable {
|
.overflowBackdropCard-scalable {
|
||||||
width: 56%;
|
width: 56%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 40%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 700px) {
|
@media all and (min-width: 700px) {
|
||||||
|
@ -461,6 +473,10 @@ button {
|
||||||
.backdropCard-scalable {
|
.backdropCard-scalable {
|
||||||
width: 33.333333333333333333333333333333%;
|
width: 33.333333333333333333333333333333%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 30%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (min-width: 800px) {
|
@media all and (min-width: 800px) {
|
||||||
|
@ -501,6 +517,10 @@ button {
|
||||||
width: 40%;
|
width: 40%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 24%
|
||||||
|
}
|
||||||
|
|
||||||
.overflowSquareCard-scalable {
|
.overflowSquareCard-scalable {
|
||||||
width: 22%;
|
width: 22%;
|
||||||
}
|
}
|
||||||
|
@ -527,6 +547,10 @@ button {
|
||||||
.smallBackdropCard-scalable {
|
.smallBackdropCard-scalable {
|
||||||
width: 16.666666666666666666666666666667%;
|
width: 16.666666666666666666666666666667%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.overflowSmallBackdropCard-scalable {
|
||||||
|
width: 18%
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusManager', 'indicators', 'globalize', 'layoutManager', 'apphost', 'dom', 'emby-button', 'css!./card', 'paper-icon-button-light', 'clearButtonStyle'],
|
define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusManager', 'indicators', 'globalize', 'layoutManager', 'apphost', 'dom', 'browser', 'emby-button', 'css!./card', 'paper-icon-button-light', 'clearButtonStyle'],
|
||||||
function (datetime, imageLoader, connectionManager, itemHelper, focusManager, indicators, globalize, layoutManager, appHost, dom) {
|
function (datetime, imageLoader, connectionManager, itemHelper, focusManager, indicators, globalize, layoutManager, appHost, dom, browser) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var devicePixelRatio = window.devicePixelRatio || 1;
|
var devicePixelRatio = window.devicePixelRatio || 1;
|
||||||
|
@ -144,6 +144,20 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
||||||
return 100 / 64;
|
return 100 / 64;
|
||||||
}
|
}
|
||||||
return 100 / 72;
|
return 100 / 72;
|
||||||
|
case 'overflowSmallBackdrop':
|
||||||
|
if (screenWidth >= 1200) {
|
||||||
|
return 100 / 18;
|
||||||
|
}
|
||||||
|
if (screenWidth >= 1000) {
|
||||||
|
return 100 / 24;
|
||||||
|
}
|
||||||
|
if (screenWidth >= 770) {
|
||||||
|
return 100 / 30;
|
||||||
|
}
|
||||||
|
if (screenWidth >= 540) {
|
||||||
|
return 100 / 40;
|
||||||
|
}
|
||||||
|
return 100 / 60;
|
||||||
default:
|
default:
|
||||||
return 4;
|
return 4;
|
||||||
}
|
}
|
||||||
|
@ -1275,7 +1289,12 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
||||||
cardContentClose = '</button>';
|
cardContentClose = '</button>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (options.vibrant && imgUrl && !vibrantSwatch) {
|
var vibrantAttributes = options.vibrant && imgUrl && !vibrantSwatch ?
|
||||||
|
(' data-vibrant="' + cardFooterId + '" data-swatch="db"') :
|
||||||
|
'';
|
||||||
|
|
||||||
|
// Don't use the IMG tag with safari because it puts a white border around it
|
||||||
|
if (vibrantAttributes && !browser.safari) {
|
||||||
cardImageContainerOpen = '<div class="' + cardImageContainerClass + '">';
|
cardImageContainerOpen = '<div class="' + cardImageContainerClass + '">';
|
||||||
|
|
||||||
var imgClass = 'cardImage cardImage-img lazy';
|
var imgClass = 'cardImage cardImage-img lazy';
|
||||||
|
@ -1286,10 +1305,10 @@ define(['datetime', 'imageLoader', 'connectionManager', 'itemHelper', 'focusMana
|
||||||
imgClass += ' coveredImage-img';
|
imgClass += ' coveredImage-img';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cardImageContainerOpen += '<img crossOrigin="Anonymous" class="' + imgClass + '" data-vibrant="' + cardFooterId + '" data-swatch="db" data-src="' + imgUrl + '" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" />';
|
cardImageContainerOpen += '<img crossOrigin="Anonymous" class="' + imgClass + '"' + vibrantAttributes + ' data-src="' + imgUrl + '" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" />';
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
cardImageContainerOpen = imgUrl ? ('<div class="' + cardImageContainerClass + ' lazy" data-src="' + imgUrl + '">') : ('<div class="' + cardImageContainerClass + '">');
|
cardImageContainerOpen = imgUrl ? ('<div class="' + cardImageContainerClass + ' lazy"' + vibrantAttributes + ' data-src="' + imgUrl + '">') : ('<div class="' + cardImageContainerClass + '">');
|
||||||
}
|
}
|
||||||
|
|
||||||
var cardScalableClass = options.cardLayout ? 'cardScalable visualCardBox-cardScalable' : 'cardScalable';
|
var cardScalableClass = options.cardLayout ? 'cardScalable visualCardBox-cardScalable' : 'cardScalable';
|
||||||
|
|
|
@ -27,7 +27,7 @@ define(['lazyLoader', 'imageFetcher', 'layoutManager', 'browser', 'appSettings',
|
||||||
function fillImageElement(elem, source, enableEffects) {
|
function fillImageElement(elem, source, enableEffects) {
|
||||||
imageFetcher.loadImage(elem, source).then(function () {
|
imageFetcher.loadImage(elem, source).then(function () {
|
||||||
|
|
||||||
var fillingVibrant = elem.tagName !== 'IMG' ? false : fillVibrant(elem, source);
|
var fillingVibrant = fillVibrant(elem, source);
|
||||||
|
|
||||||
if (enableFade && !layoutManager.tv && enableEffects !== false && !fillingVibrant) {
|
if (enableFade && !layoutManager.tv && enableEffects !== false && !fillingVibrant) {
|
||||||
fadeIn(elem);
|
fadeIn(elem);
|
||||||
|
@ -110,14 +110,17 @@ define(['lazyLoader', 'imageFetcher', 'layoutManager', 'browser', 'appSettings',
|
||||||
requestIdleCallback(function () {
|
requestIdleCallback(function () {
|
||||||
|
|
||||||
//var now = new Date().getTime();
|
//var now = new Date().getTime();
|
||||||
var swatch = getVibrantInfo(img, url).split('|');
|
getVibrantInfoFromElement(img, url).then(function (vibrantInfo) {
|
||||||
//console.log('vibrant took ' + (new Date().getTime() - now) + 'ms');
|
|
||||||
if (swatch.length) {
|
var swatch = vibrantInfo.split('|');
|
||||||
|
//console.log('vibrant took ' + (new Date().getTime() - now) + 'ms');
|
||||||
|
if (swatch.length) {
|
||||||
|
|
||||||
var index = 0;
|
var index = 0;
|
||||||
vibrantElement.style.backgroundColor = swatch[index];
|
vibrantElement.style.backgroundColor = swatch[index];
|
||||||
vibrantElement.style.color = swatch[index + 1];
|
vibrantElement.style.color = swatch[index + 1];
|
||||||
}
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
/*
|
/*
|
||||||
* Results into:
|
* Results into:
|
||||||
|
@ -129,6 +132,22 @@ define(['lazyLoader', 'imageFetcher', 'layoutManager', 'browser', 'appSettings',
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getVibrantInfoFromElement(elem, url) {
|
||||||
|
|
||||||
|
if (elem.tagName === 'IMG') {
|
||||||
|
return Promise.resolve(getVibrantInfo(elem, url));
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Promise(function (resolve, reject) {
|
||||||
|
|
||||||
|
var img = new Image();
|
||||||
|
img.onload = function () {
|
||||||
|
resolve(getVibrantInfo(img, url));
|
||||||
|
};
|
||||||
|
img.src = url;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function getSettingsKey(url) {
|
function getSettingsKey(url) {
|
||||||
|
|
||||||
var parts = url.split('://');
|
var parts = url.split('://');
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.pageWithAbsoluteTabs .pageTabContent {
|
.pageWithAbsoluteTabs .pageTabContent {
|
||||||
padding-top: 2.2em;
|
padding-top: 2.6em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*.pageWithAbsoluteTabs .pageTabContent {
|
/*.pageWithAbsoluteTabs .pageTabContent {
|
||||||
|
@ -103,13 +103,6 @@
|
||||||
margin-bottom: 2em;
|
margin-bottom: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media all and (max-width: 800px) {
|
|
||||||
|
|
||||||
.hiddenSectionOnMobile {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media all and (min-width: 800px) {
|
@media all and (min-width: 800px) {
|
||||||
|
|
||||||
.hiddenSectionOnNonMobile {
|
.hiddenSectionOnNonMobile {
|
||||||
|
|
|
@ -66,7 +66,7 @@ h1, h1 a {
|
||||||
}
|
}
|
||||||
|
|
||||||
.cardImageContainer {
|
.cardImageContainer {
|
||||||
border-radius: 5px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.noSecondaryNavPage .itemBackdrop {
|
.noSecondaryNavPage .itemBackdrop {
|
||||||
|
|
|
@ -38,16 +38,16 @@
|
||||||
return Sections.loadRecentlyAdded(elem, user);
|
return Sections.loadRecentlyAdded(elem, user);
|
||||||
}
|
}
|
||||||
else if (section == 'librarytiles') {
|
else if (section == 'librarytiles') {
|
||||||
return Sections.loadLibraryTiles(elem, user, 'backdrop', index, false);
|
return Sections.loadLibraryTiles(elem, user, 'backdrop', index);
|
||||||
}
|
}
|
||||||
else if (section == 'smalllibrarytiles') {
|
else if (section == 'smalllibrarytiles') {
|
||||||
return Sections.loadLibraryTiles(elem, user, 'smallBackdrop', index, false);
|
return Sections.loadLibraryTiles(elem, user, 'smallBackdrop', index);
|
||||||
}
|
}
|
||||||
else if (section == 'smalllibrarytiles-automobile') {
|
else if (section == 'smalllibrarytiles-automobile') {
|
||||||
return Sections.loadLibraryTiles(elem, user, 'smallBackdrop', index, true);
|
return Sections.loadLibraryTiles(elem, user, 'smallBackdrop', index);
|
||||||
}
|
}
|
||||||
else if (section == 'librarytiles-automobile') {
|
else if (section == 'librarytiles-automobile') {
|
||||||
return Sections.loadLibraryTiles(elem, user, 'backdrop', index, true);
|
return Sections.loadLibraryTiles(elem, user, 'backdrop', index);
|
||||||
}
|
}
|
||||||
else if (section == 'librarybuttons') {
|
else if (section == 'librarybuttons') {
|
||||||
return Sections.loadlibraryButtons(elem, userId, index);
|
return Sections.loadlibraryButtons(elem, userId, index);
|
||||||
|
|
|
@ -48,7 +48,7 @@
|
||||||
itemsContainer: elem,
|
itemsContainer: elem,
|
||||||
shape: "backdrop",
|
shape: "backdrop",
|
||||||
preferThumb: true,
|
preferThumb: true,
|
||||||
showTitle: false,
|
showTitle: true,
|
||||||
scalable: true,
|
scalable: true,
|
||||||
showItemCounts: true,
|
showItemCounts: true,
|
||||||
centerText: true,
|
centerText: true,
|
||||||
|
|
|
@ -396,17 +396,13 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadLibraryTiles(elem, user, shape, index, autoHideOnMobile) {
|
function loadLibraryTiles(elem, user, shape) {
|
||||||
|
|
||||||
return getUserViews(user.Id).then(function (items) {
|
return getUserViews(user.Id).then(function (items) {
|
||||||
|
|
||||||
var html = '';
|
var html = '';
|
||||||
|
|
||||||
if (autoHideOnMobile) {
|
html += '<div>';
|
||||||
html += '<div class="hiddenSectionOnMobile">';
|
|
||||||
} else {
|
|
||||||
html += '<div>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (items.length) {
|
if (items.length) {
|
||||||
|
|
||||||
|
@ -415,7 +411,7 @@
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
var scrollX = enableScrollX() && dom.getWindowSize().innerWidth >= 600;
|
var scrollX = enableScrollX() && dom.getWindowSize().innerWidth >= 500;
|
||||||
|
|
||||||
if (scrollX) {
|
if (scrollX) {
|
||||||
html += '<div is="emby-itemscontainer" class="hiddenScrollX itemsContainer">';
|
html += '<div is="emby-itemscontainer" class="hiddenScrollX itemsContainer">';
|
||||||
|
@ -425,7 +421,7 @@
|
||||||
|
|
||||||
html += cardBuilder.getCardsHtml({
|
html += cardBuilder.getCardsHtml({
|
||||||
items: items,
|
items: items,
|
||||||
shape: scrollX ? 'overflowBackdrop' : shape,
|
shape: scrollX ? 'overflowSmallBackdrop' : shape,
|
||||||
showTitle: true,
|
showTitle: true,
|
||||||
centerText: true,
|
centerText: true,
|
||||||
overlayText: false,
|
overlayText: false,
|
||||||
|
@ -438,12 +434,6 @@
|
||||||
|
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|
||||||
if (autoHideOnMobile) {
|
|
||||||
html += '<div class="hiddenSectionOnNonMobile" style="margin-top:1em;">';
|
|
||||||
html += getLibraryButtonsHtml(items);
|
|
||||||
html += '</div>';
|
|
||||||
}
|
|
||||||
|
|
||||||
return getAppInfo().then(function (infoHtml) {
|
return getAppInfo().then(function (infoHtml) {
|
||||||
|
|
||||||
elem.innerHTML = html + infoHtml;
|
elem.innerHTML = html + infoHtml;
|
||||||
|
@ -497,7 +487,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
var supportsImageAnalysis = appHost.supports('imageanalysis');
|
var supportsImageAnalysis = appHost.supports('imageanalysis');
|
||||||
var cardLayout = appHost.preferVisualCards;
|
var cardLayout = supportsImageAnalysis;
|
||||||
|
|
||||||
html += cardBuilder.getCardsHtml({
|
html += cardBuilder.getCardsHtml({
|
||||||
items: result.Items,
|
items: result.Items,
|
||||||
|
|
|
@ -99,7 +99,7 @@
|
||||||
var container = view.querySelector('#resumableItems');
|
var container = view.querySelector('#resumableItems');
|
||||||
|
|
||||||
var supportsImageAnalysis = appHost.supports('imageanalysis');
|
var supportsImageAnalysis = appHost.supports('imageanalysis');
|
||||||
var cardLayout = appHost.preferVisualCards;
|
var cardLayout = supportsImageAnalysis;
|
||||||
|
|
||||||
cardBuilder.buildCards(result.Items, {
|
cardBuilder.buildCards(result.Items, {
|
||||||
itemsContainer: container,
|
itemsContainer: container,
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
itemsContainer: elem,
|
itemsContainer: elem,
|
||||||
shape: "backdrop",
|
shape: "backdrop",
|
||||||
preferThumb: true,
|
preferThumb: true,
|
||||||
showTitle: false,
|
showTitle: true,
|
||||||
scalable: true,
|
scalable: true,
|
||||||
showItemCounts: true,
|
showItemCounts: true,
|
||||||
centerText: true,
|
centerText: true,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue