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
{{ message }}
This repository was archived by the owner on Mar 13, 2018. It is now read-only.
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?
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?