Skip to content
New issue

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

$.props is undefined #3

Open
webbird opened this issue Aug 29, 2011 · 1 comment
Open

$.props is undefined #3

webbird opened this issue Aug 29, 2011 · 1 comment

Comments

@webbird
Copy link

webbird commented Aug 29, 2011

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".

@webbird
Copy link
Author

webbird commented Aug 29, 2011

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 = {}
        }
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant