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
As of jQuery v1.6, $.props no longer exists. See here for details:
http://bugs.jquery.com/ticket/9117
So trying to use rotate3Di, it gives you an error "$.props is undefined".
The text was updated successfully, but these errors were encountered:
You may solve this issue by changing lines 30 ff in file jquery-css-transform.js to
// Temporary solution for current 1.6.x incompatibility, while // preserving 1.3.x compatibility, until I can rewrite using CSS Hooks if (_propsObj === null) { if (typeof $.cssProps != 'undefined') { _propsObj = $.cssProps; } else if (typeof $.propFix != 'undefined') { _propsObj = $.propFix; } else { _propsObj = {} } }
Sorry, something went wrong.
No branches or pull requests
As of jQuery v1.6, $.props no longer exists. See here for details:
http://bugs.jquery.com/ticket/9117
So trying to use rotate3Di, it gives you an error "$.props is undefined".
The text was updated successfully, but these errors were encountered: