1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-22 22:14:06 +02:00

enhance(frontend): MkDriveで自動でもっと見るを有効化 (#17037)

* enhance(frontend): MkDriveで自動でもっと見るを有効化

* Update Changelog
This commit is contained in:
かっこかり
2025-12-28 19:53:08 +09:00
committed by GitHub
parent c32307dca4
commit 7a5430199f
3 changed files with 16 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export const appearDirective = {
const fn = binding.value;
if (fn == null) return;
const check = throttle<IntersectionObserverCallback>(1000, (entries) => {
const check = throttle<IntersectionObserverCallback>(500, (entries) => {
if (entries.some(entry => entry.isIntersecting)) {
fn();
}