This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Dropdown breaks in chrome 52 #75
Comments
Looks like this is actually related to |
Hi @jakemac53 Thanks |
@vardhans You can comment out the following lines in
Which should stop the dropdown animating (it will still fade in) until a fix is out. |
Thanks @ThaumRystra I managed to get that working. |
Unfortunately my fix above breaks dropdown boxes appearing in other overlay elements. They won't bring themselves to the front. |
You can also avoid this bug by creating the
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When clicking the dropdown in chrome 52, I get the following error,
Uncaught TypeError: Failed to execute 'animate' on 'Element': 'function (e){function f(a,b,c){return 3*a*(1-c)*(1-c)*c+3*b*(1-c)*c*c+c*c*c}for(var g=0,h=1;;){var i=(g+h)/2,j=f(a,c,i);if(Math.abs(e-j)<.001)return f(b,d,i);e>j?g=i:h=i}}' is not a valid value for easing
.You can see this in the live demo, just click one of the dropdowns. Presumably other animations are broken as well.
From looking at the spec it seems that easing is expected to be a string. Not sure if this is due to a spec update, or some clash between the polyfill and native implementation?
The text was updated successfully, but these errors were encountered: