diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-01-15 20:37:01 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-01-15 20:37:01 -0400 |
commit | 3daff0953b88de9ae0fffa1b928c4945e8902a09 (patch) | |
tree | 8b9aea91cb06c49d323241b6357a6235d1e332ed /src/static | |
parent | 088a0d4ef42c90d6e81586601ee6cb37340b5bf4 (diff) | |
parent | a526ae6ac12e912374ff812c0ab89c70c7943df7 (diff) |
Merge branch 'staging' into preview
Diffstat (limited to 'src/static')
-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]); |