-
Notifications
You must be signed in to change notification settings - Fork 473
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
conflict with jQuery #8
Comments
@kimasgold Did you find a way around it, so that you could use jQuery? |
This update fixes issues where the file would cause jQuery to break. This is in response to daleharvey#8 For more info on the reason why it causes an issue - http://stackoverflow.com/questions/14941657/why-does-this-javascript-prototype-function-break-jquery
Added pull request to fix this issue #14 |
Yes I think i found a way around it, that it wont interfere with jquery. Just now i cant remember this at all. sorry. back then i was frustrating on this matter. but i can see you found a way to fix it too. |
Thanks @kimasgold . Yes, I a "Clone" method added to the Object.prototype and jQuery was having issues with the function being added to all objects. As the method was only ever used once in the code, I simply changed to to be a standalone method and passed the object to it. All my jQuery animations are now working fine with the update. |
Please merge this. Because of this, I fucked up my production environment on April 1st. 🙄 |
when I use your code with some simple (fadeI; fadeOut) jQuery i get "undefined is not a function" it points to this line "var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] )," on jQuery. It works when i dont use any of game code. How to solve this problem because i want to use jQuery code too
The text was updated successfully, but these errors were encountered: