scrollnav icon indicating copy to clipboard operation
scrollnav copied to clipboard

fix can not scroll to the right position

Open w3yyb opened this issue 3 years ago • 0 comments

When I first into a page ,it can't scroll to the right position ,bug if I resize the window, then it can. To fix this bug:

First change: return window.addEventListener("resize", h), h

to : return window.addEventListener("resize", h),window.addEventListener("load", h), h

Then add : window.removeEventListener("load", f) after window.removeEventListener("resize", f)

w3yyb avatar Oct 26 '21 16:10 w3yyb