diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-16 11:15:28 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-16 11:15:28 -0800 |
| commit | cd4e599a6d7a13e08841d63257dca6d355eb2bb8 (patch) | |
| tree | c705d35f4f38366efa3e430a1f956677a85f385d /frontend-vanilla/src/main.ts | |
| parent | 6e84019f6cf887f777c2c8f9601455e031dad3a5 (diff) | |
| parent | 0b08b2fb49827399ff0652bc20d5f71e2066025c (diff) | |
| download | neko-cd4e599a6d7a13e08841d63257dca6d355eb2bb8.tar.gz neko-cd4e599a6d7a13e08841d63257dca6d355eb2bb8.tar.bz2 neko-cd4e599a6d7a13e08841d63257dca6d355eb2bb8.zip | |
Merge pull request #5 from adammathes/claude/thicket-ready-crank-RmQuI
Change mark-as-read threshold from 50% to 100% visibility
Diffstat (limited to 'frontend-vanilla/src/main.ts')
| -rw-r--r-- | frontend-vanilla/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend-vanilla/src/main.ts b/frontend-vanilla/src/main.ts index 7b55c48..7d75e14 100644 --- a/frontend-vanilla/src/main.ts +++ b/frontend-vanilla/src/main.ts @@ -291,7 +291,7 @@ export function renderItems() { } } }); - }, { threshold: 0.5 }); + }, { threshold: 1.0 }); contentArea.querySelectorAll('.feed-item').forEach(el => itemObserver!.observe(el)); } |
