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
cause: pos results as 1.e-16, which makes the rotateUnits incorrect.
fix:
jquery-animate-css-rotate-scale.js line39
change from:
m = val.toString().match(/^(-?\d+(.\d+)?)(.+)?$/);
to
m = val.toString().match(/^(-?\d+(.\d*e?-?\d+)?)(.+)?$/);
The text was updated successfully, but these errors were encountered:
cause: pos results as 1.e-16, which makes the rotateUnits incorrect.
fix:
jquery-animate-css-rotate-scale.js line39
change from:
m = val.toString().match(/^(-?\d+(.\d+)?)(.+)?$/);
to
m = val.toString().match(/^(-?\d+(.\d*e?-?\d+)?)(.+)?$/);
The text was updated successfully, but these errors were encountered: