jimmynotjim / scrollnav

A dependency free JavaScript plugin for auto generating single page navigation
http://scrollnav.com
MIT License
461 stars 127 forks source link

fix can not scroll to the right position #112

Open w3yyb opened 3 years ago

w3yyb commented 3 years ago

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)