We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In jQuery 1.8, animation of skew and translate are broken. (Animation of scale seems to work, however.)
Setting by $(selector).css({skewY: '10deg'}) works, but animating by $(selector).animate({skewY: '10deg'}) causes the following error:
jquery-1.8.2.js:583 TypeError: 'undefined' is not an object (evaluating 'obj.length')
This appears to then kill the animation queue, as subsequent animations to that element don't fire.
jsFiddle reduced case of broken skew animation:
http://jsfiddle.net/richcon/UkAfD/
The text was updated successfully, but these errors were encountered:
By the way, I tried manually applying the patch from issue #40, "Plugin breaks in jQuery 1.8+, simple fix", and it didn't effect this issue.
Sorry, something went wrong.
I added jQuery 1.8 support in a pull request. You can your example here:
http://jsfiddle.net/zhMyg/1/
No branches or pull requests
In jQuery 1.8, animation of skew and translate are broken. (Animation of scale seems to work, however.)
Setting by $(selector).css({skewY: '10deg'}) works, but animating by $(selector).animate({skewY: '10deg'}) causes the following error:
This appears to then kill the animation queue, as subsequent animations to that element don't fire.
jsFiddle reduced case of broken skew animation:
http://jsfiddle.net/richcon/UkAfD/
The text was updated successfully, but these errors were encountered: