Skip to content

Commit 98e45af

Browse files
authoredJul 12, 2022
fix: can't detect that the page has scrolled to the bottom (#956) (#970)
1 parent 7a9e4d9 commit 98e45af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/client/theme-default/composables/outline.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function useActiveAnchor(
105105
const scrollY = window.scrollY
106106
const innerHeight = window.innerHeight
107107
const offsetHeight = document.body.offsetHeight
108-
const isBottom = scrollY + innerHeight === offsetHeight
108+
const isBottom = Math.abs(scrollY + innerHeight - offsetHeight) < 1
109109

110110
// page bottom - highlight last one
111111
if (anchors.length && isBottom) {

0 commit comments

Comments
 (0)
Please sign in to comment.