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
While I am talking specifically about the AMD build, I assume this is an issue elsewhere. Line 25 of (the AMD build of) can.Control does...
can.Control
special = can.getObject("$.event.special") || {},
Unfortunately if jQuery has been removed from global scope using $.noConflict(true), the call to can.getObject() will return undefined.
$.noConflict(true)
can.getObject()
undefined
I think a quick fix would be to do this instead...
special = can.getObject("$.event.special", [can]) || {},
The text was updated successfully, but these errors were encountered:
21b809b
Thanks! Acessing can.$ is actually a good fix. Will be part of 1.1.3
Sorry, something went wrong.
No branches or pull requests
While I am talking specifically about the AMD build, I assume this is an issue elsewhere. Line 25 of (the AMD build of)
can.Control
does...Unfortunately if jQuery has been removed from global scope using
$.noConflict(true)
, the call tocan.getObject()
will returnundefined
.I think a quick fix would be to do this instead...
The text was updated successfully, but these errors were encountered: