mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
control the number of simultaneous image operations
This commit is contained in:
parent
765402d8ee
commit
ca42e40d12
1 changed files with 3 additions and 3 deletions
|
@ -942,8 +942,8 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
// Get Video Poster (Code from librarybrowser.js)
|
// Get Video Poster (Code from librarybrowser.js)
|
||||||
var screenWidth = Math.max(screen.height, screen.width),
|
var screenWidth = Math.max(screen.height, screen.width);
|
||||||
posterCode = '';
|
var posterCode = '';
|
||||||
|
|
||||||
if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
if (item.BackdropImageTags && item.BackdropImageTags.length) {
|
||||||
|
|
||||||
|
@ -961,7 +961,7 @@
|
||||||
type: 'Backdrop',
|
type: 'Backdrop',
|
||||||
index: 0,
|
index: 0,
|
||||||
maxWidth: screenWidth,
|
maxWidth: screenWidth,
|
||||||
tag: item.ParentBackdropImageTags[0]
|
tag: item.ParentBackdropImageTags[0]
|
||||||
}) + '"';
|
}) + '"';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue