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

Merge pull request #4069 from peterspenler/fix/lazyload-image-intersection

This commit is contained in:
Bill Thornton 2022-10-26 17:34:47 -04:00 committed by GitHub
commit 4c99480c42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -52,6 +52,7 @@
- [MinecraftPlaye](https://github.com/MinecraftPlaye) - [MinecraftPlaye](https://github.com/MinecraftPlaye)
- [Matthew Jones](https://github.com/matthew-jones-uk) - [Matthew Jones](https://github.com/matthew-jones-uk)
- [taku0](https://github.com/taku0) - [taku0](https://github.com/taku0)
- [Peter Spenler](https://github.com/peterspenler)
# Emby Contributors # Emby Contributors

View file

@ -83,7 +83,7 @@ worker.addEventListener(
source = entry; source = entry;
} }
if (entry.intersectionRatio > 0) { if (entry.isIntersecting) {
if (source) { if (source) {
fillImageElement(target, source); fillImageElement(target, source);
} }