-
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
Selector: Implement uniqueSort
, a chainable method version of jQuery.uniqueSort
#5166
Comments
This was referenced Nov 24, 2022
mgol
added a commit
to mgol/jquery
that referenced
this issue
Nov 24, 2022
Some APIs, like `.prevAll()`, return elements in the reversed order, causing confusing behavior when used with wrapping methods (see jquerygh-5149 for more info) To provide an easy workaround, this commit implements a chainable `uniqueSort` method on jQuery objects, an equivalent of `jQuery.uniqueSort`. Fixes jquerygh-5166
mgol
added a commit
to mgol/jquery
that referenced
this issue
Nov 25, 2022
Some APIs, like `.prevAll()`, return elements in the reversed order, causing confusing behavior when used with wrapping methods (see jquerygh-5149 for more info) To provide an easy workaround, this commit implements a chainable `uniqueSort` method on jQuery objects, an equivalent of `jQuery.uniqueSort`. Fixes jquerygh-5166
Landed on |
mgol
added a commit
that referenced
this issue
Dec 14, 2022
Some APIs, like `.prevAll()`, return elements in the reversed order, causing confusing behavior when used with wrapping methods (see gh-5149 for more info) To provide an easy workaround, this commit implements a chainable `uniqueSort` method on jQuery objects, an equivalent of `jQuery.uniqueSort`. Fixes gh-5166 Closes gh-5168 (cherry picked from commit 5266f23)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
Some APIs, like
.prevAll()
, return elements in the reversed order, causing confusing behavior when used with wrapping methods (see gh-5149 for more info). To provide an easy workaround, we need to implement a chainableuniqueSort
method on jQuery objects, an equivalent ofjQuery.uniqueSort
.Link to test case
See gh-5149 for more details
The text was updated successfully, but these errors were encountered: