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

update list classes

This commit is contained in:
Luke Pulverenti 2016-07-30 01:25:07 -04:00
parent ebe4dc0ca5
commit b160cd48a3
19 changed files with 46 additions and 40 deletions

View file

@ -86,7 +86,7 @@
shape: getSquareShape(),
showTitle: true,
showParentTitle: true,
defaultAction: 'instantmix',
action: 'instantmix',
lazy: true,
centerText: true,
overlayMoreButton: true
@ -132,7 +132,7 @@
shape: getSquareShape(),
showTitle: true,
showParentTitle: true,
defaultAction: 'instantmix',
action: 'instantmix',
lazy: true,
centerText: true,
overlayMoreButton: true
@ -255,10 +255,10 @@
for (var i = 0, length = containers.length; i < length; i++) {
if (enableScrollX()) {
containers[i].classList.add('hiddenScrollX');
containers[i].classList.remove('verticalItemsContainer');
containers[i].classList.remove('vertical-wrap');
} else {
containers[i].classList.remove('hiddenScrollX');
containers[i].classList.add('verticalItemsContainer');
containers[i].classList.add('vertical-wrap');
}
}
};