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

fix images not scaling

This commit is contained in:
Luke Pulverenti 2016-01-23 17:52:41 -05:00
parent 97286bc27a
commit dd89b16385

View file

@ -33,11 +33,11 @@
switch (shape) { switch (shape) {
case 'squareCard': case 'square':
return 1; return 1;
case 'backdropCard': case 'backdrop':
return (16 / 9); return (16 / 9);
case 'portraitCard': case 'portrait':
return (2 / 3); return (2 / 3);
} }
return null; return null;