-
Notifications
You must be signed in to change notification settings - Fork 20.6k
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
Can't chain multiple find calls using Sizzle-less build #2466
Labels
Comments
mlewand
added a commit
to mlewand/jquery
that referenced
this issue
Jul 13, 2015
mlewand
added a commit
to mlewand/jquery
that referenced
this issue
Jul 13, 2015
mlewand
added a commit
to mlewand/jquery
that referenced
this issue
Jul 13, 2015
Whoops, I see that you have without referencing this issue. I'll move discussion to gh-2467. |
Yes, you're right I've already made a PR for that. I believe it was already referenced as I've referenced this issue in PR description.
Anyway, I'll be happy to read your feedback in gh-2467! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Looks like
uniqueSort
function is not resolved correctly when jQuery is builded without Sizzle dependency.When I try to call chained
find
methods I'm getting following exception:Uncaught TypeError: n.uniqueSort is not a function
TC
Build jQuery with
grunt custom:-sizzle
Try to chain multiple
find
calls, e.g.An exception is thrown:
Uncaught TypeError: n.uniqueSort is not a function
.It happens also with other calls, e.g.
$( 'div' ).has( 'span' )
.Experienced with 84ccf26 and a2ae215.
The text was updated successfully, but these errors were encountered: