1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00

Fixes typo

This commit is contained in:
Amir Raminfar
2022-08-27 11:50:35 -07:00
parent 658efd0538
commit 696341b779

View File

@@ -52,7 +52,7 @@ const mutationObserver = new MutationObserver((e) => {
}); });
const intersectionObserver = new IntersectionObserver((entries) => (paused.value = entries[0].intersectionRatio == 0), { const intersectionObserver = new IntersectionObserver((entries) => (paused.value = entries[0].intersectionRatio == 0), {
threshholds: [0, 1], threshold: [0, 1],
rootMargin: "80px 0px", rootMargin: "80px 0px",
}); });