mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
A special commit for the Ombi Bitch (fix for huge resolution display)
This commit is contained in:
parent
4100a07db7
commit
7d34933542
1 changed files with 31 additions and 1 deletions
|
@ -34,12 +34,42 @@ export class CarouselListComponent implements OnInit {
|
|||
get mediaTypeStorageKey() {
|
||||
return "DiscoverOptions" + this.discoverType.toString();
|
||||
};
|
||||
private amountToLoad = 14;
|
||||
private amountToLoad = 17;
|
||||
private currentlyLoaded = 0;
|
||||
|
||||
constructor(private searchService: SearchV2Service,
|
||||
private storageService: StorageService) {
|
||||
this.responsiveOptions = [
|
||||
{
|
||||
breakpoint: '4000px',
|
||||
numVisible: 17,
|
||||
numScroll: 17
|
||||
},
|
||||
{
|
||||
breakpoint: '3800px',
|
||||
numVisible: 16,
|
||||
numScroll: 16
|
||||
},
|
||||
{
|
||||
breakpoint: '3600px',
|
||||
numVisible: 15,
|
||||
numScroll: 15
|
||||
},
|
||||
{
|
||||
breakpoint: '3400px',
|
||||
numVisible: 14,
|
||||
numScroll: 14
|
||||
},
|
||||
{
|
||||
breakpoint: '3200px',
|
||||
numVisible: 13,
|
||||
numScroll: 13
|
||||
},
|
||||
{
|
||||
breakpoint: '3000px',
|
||||
numVisible: 12,
|
||||
numScroll: 12
|
||||
},
|
||||
{
|
||||
breakpoint: '2800px',
|
||||
numVisible: 11,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue