Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Build: Put all AMD modules in "src/" in strict mode | Michał Gołębiowski | 2016-04-25 | 1 | -0/+2 |
| | | | | Fixes gh-3073 | ||||
* | Selector: add jQuery.escapeSelector | Timmy Willison | 2016-01-28 | 1 | -3/+27 |
| | | | | | Fixes gh-1761 Close gh-2878 | ||||
* | Selector: pass jQuery unit tests with selector-native | Timmy Willison | 2015-11-11 | 1 | -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 files | Oleg Gaidarenko | 2015-09-07 | 1 | -15/+21 |
| | | | | Fixes gh-2056 | ||||
* | Selector: Define jQuery.uniqueSort in selector-native too | Marek Lewandowski | 2015-07-14 | 1 | -22/+24 |
| | | | | | Fixes gh-2466 Closes gh-2467 | ||||
* | Effects: Add tests for jQuery.Tween | Corey Frang | 2015-06-26 | 1 | -1/+2 |
| | |||||
* | Build: Don't assume the browser environment; smoke test on Node w/ jsdom | Michał Gołębiowski | 2014-12-26 | 1 | -8/+9 |
| | | | | | Fixes gh-1950 Closes gh-1949 | ||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 1 | -8/+10 |
| | |||||
* | Selector: Use Element.matches in selector-native if available | Philip Jägenstedt | 2014-03-20 | 1 | -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 Willison | 2013-08-15 | 1 | -1/+8 |
| | |||||
* | Check nodeType of elements passed to selector-native's find. Fixes #13577. | Timmy Willison | 2013-05-06 | 1 | -1/+11 |
| | |||||
* | No ticket: boolean -> bool in selector-native | Timmy Willison | 2013-05-06 | 1 | -1/+1 |
| | |||||
* | Ref 4ef51690: Update selector-native for new Sizzle dependencies | Richard Gibson | 2013-04-05 | 1 | -0/+5 |
| | |||||
* | Remove unprefixed `matchesSelector`. Stick most common first. Update Sizzle | Timmy Willison | 2013-03-23 | 1 | -2/+1 |
| | |||||
* | Add warnings and ignore the built Sizzle file. | Dave Methvin | 2013-02-27 | 1 | -0/+25 |
| | |||||
* | Fix #13434: native-API selector module | Richard Gibson | 2013-02-27 | 1 | -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 |