-
Notifications
You must be signed in to change notification settings - Fork 329
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
DK always expanded down on IE #301
Comments
Thanks for the issue! Do you happen to know what version of IE this is happening in? |
I'm pretty sure |
I actually haven't run into this issue, IE9+ |
I actually couldn't replicate this. Can you JSBin or gist up your code? |
sigh |
Removing the bug label until I can reproduce. |
Can I get a bump on this? Also is anyone using requirejs? |
Dropdown is always expanded down on IE.
I've made a debug, the issue is quite simple:
window.scrollY
is used, but not supported on IE. To make it work, we need to change it to:(window.scrollY || window.pageYOffset)
The text was updated successfully, but these errors were encountered: