diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/static/lazy-loading.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/lazy-loading.js b/src/static/lazy-loading.js index b04ad7c2..1df56f08 100644 --- a/src/static/lazy-loading.js +++ b/src/static/lazy-loading.js @@ -37,7 +37,7 @@ function lazyLoadMain() { if (window.IntersectionObserver) { observer = new IntersectionObserver(lazyLoad, { rootMargin: '200px', - threshold: 1.0, + threshold: 0, }); for (i = 0; i < lazyElements.length; i++) { observer.observe(lazyElements[i]); |