aboutsummaryrefslogtreecommitdiffstats
path: root/src/selector-native.js
Commit message (Collapse)AuthorAgeFilesLines
* Build: Put all AMD modules in "src/" in strict modeMichał Gołębiowski2016-04-251-0/+2
| | | | Fixes gh-3073
* Selector: add jQuery.escapeSelectorTimmy Willison2016-01-281-3/+27
| | | | | Fixes gh-1761 Close gh-2878
* Selector: pass jQuery unit tests with selector-nativeTimmy Willison2015-11-111-49/+76
| | | | | | | | | - Ignore certain tests that obviously are not supported - Beefed up the sortOrder, uniqueSort, isXMLDoc, and attr functions Fixes gh-1742 Fixes gh-2048 Close gh-2703
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-15/+21
| | | | Fixes gh-2056
* Selector: Define jQuery.uniqueSort in selector-native tooMarek Lewandowski2015-07-141-22/+24
| | | | | Fixes gh-2466 Closes gh-2467
* Effects: Add tests for jQuery.TweenCorey Frang2015-06-261-1/+2
|
* Build: Don't assume the browser environment; smoke test on Node w/ jsdomMichał Gołębiowski2014-12-261-8/+9
| | | | | Fixes gh-1950 Closes gh-1949
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-8/+10
|
* Selector: Use Element.matches in selector-native if availablePhilip Jägenstedt2014-03-201-1/+2
| | | | | | | | | | | Spec: http://dom.spec.whatwg.org/#dom-element-matches Support in Chromium: https://code.google.com/p/chromium/issues/detail?id=326652 Fixes #14902 Closes gh-1524
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-1/+8
|
* Check nodeType of elements passed to selector-native's find. Fixes #13577.Timmy Willison2013-05-061-1/+11
|
* No ticket: boolean -> bool in selector-nativeTimmy Willison2013-05-061-1/+1
|
* Ref 4ef51690: Update selector-native for new Sizzle dependenciesRichard Gibson2013-04-051-0/+5
|
* Remove unprefixed `matchesSelector`. Stick most common first. Update SizzleTimmy Willison2013-03-231-2/+1
|
* Add warnings and ignore the built Sizzle file.Dave Methvin2013-02-271-0/+25
|
* Fix #13434: native-API selector moduleRichard Gibson2013-02-271-0/+125
What's out: * 6 KB * attribute not equal selector * positional selectors (:first; :eq(n); :odd; etc.) * type selectors (:input; :checkbox; :button; etc.) * state-based selectors (:animated; :visible; :hidden; etc.) * :has(selector) * custom selectors * leading combinators (e.g., $collection.find("> *")) * reliable functionality on XML fragments * requiring all parts of a selector to match elements under context (e.g., $div.find("div > *") now matches children of $div) * matching against non-elements * reliable sorting of disconnected nodes