From 8ada69274b424f06f79cd3bd9fe809c04c343993 Mon Sep 17 00:00:00 2001 From: hakadao Date: Thu, 18 Apr 2024 21:05:22 +0800 Subject: [PATCH] feat: adjust reach bottom distance --- src/contentScripts/views/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/contentScripts/views/App.vue b/src/contentScripts/views/App.vue index 75cb2493..c72d1974 100644 --- a/src/contentScripts/views/App.vue +++ b/src/contentScripts/views/App.vue @@ -236,7 +236,7 @@ function handleOsScroll() { else showTopBarMask.value = true - if (clientHeight + scrollTop >= scrollHeight - 20) + if (clientHeight + scrollTop >= scrollHeight - 150) handleThrottledReachBottom() if (isHomePage())