-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ie 11 window scroll fix #1091
Ie 11 window scroll fix #1091
Conversation
ie11 - what a pain |
// IE11 fix: | ||
// Scrollable events still bubble up and are caught by this handler in ie11. | ||
// We can ignore this event | ||
if (event.currentTarget !== getWindow()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alexreardon This actually doesn't fix the issue for IE11.
// IE11 fix: | ||
// Scrollable events still bubble up and are caught by this handler in ie11. | ||
// We can ignore this event | ||
if (event.currentTarget !== getWindow()) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@alexreardon This actually doesn't fix the issue for IE11.
I just encountered this issue on ie11. It is not fixed. |
I still have this issue on IE11. |
Fixes #1088
Unlike all other browsers, ie11 will propagate all container scroll events up to the
window
Tested in: