fix images not scaling

This commit is contained in:
Luke Pulverenti 2016-01-23 17:52:41 -05:00
parent 6b3849d4fe
commit 464408e800

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;