mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix image scaling
This commit is contained in:
parent
277b5941e4
commit
c1400969db
1 changed files with 10 additions and 7 deletions
|
@ -31,14 +31,17 @@
|
|||
|
||||
function getDesiredAspect(shape) {
|
||||
|
||||
switch (shape) {
|
||||
|
||||
case 'square':
|
||||
return 1;
|
||||
case 'backdrop':
|
||||
return (16 / 9);
|
||||
case 'portrait':
|
||||
if (shape) {
|
||||
shape = shape.toLowerCase();
|
||||
if (shape.indexOf('portrait') != -1) {
|
||||
return (2 / 3);
|
||||
}
|
||||
if (shape.indexOf('backdrop') != -1) {
|
||||
return (16 / 9);
|
||||
}
|
||||
if (shape.indexOf('square') != -1) {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue