You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in IE, when you open the select, instead of scrolling to the menu it scrolls to the top of the page. This is because the window.scrollY property doesn't exist in ie.
Switching to relative scrolling avoids two problems:
1. IE does not support window.scrollY
2. window.scrollTo(0, ...) scrolls to the left
This fixesJedWatson#799.
in IE, when you open the select, instead of scrolling to the menu it scrolls to the top of the page. This is because the window.scrollY property doesn't exist in ie.
This is fixed by changing
to
as in remix-run/react-router#605
The text was updated successfully, but these errors were encountered: