Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 | ||||
* | Properly resets firingLength when emptying the list. Fixes #13517 | jaubourg | 2013-02-27 | 1 | -0/+1 |
| | |||||
* | No ticket: Squeeze data | Richard Gibson | 2013-02-26 | 1 | -47/+35 |
| | |||||
* | Ref #13283, move .andSelf() to deprecated.js. Close gh-1170. | Nguyen Phuc Lam | 2013-02-26 | 2 | -2/+2 |
| | |||||
* | Fix #13494: Fallback defineProperties to jQuery.extend. Close gh-1182. | Richard Gibson | 2013-02-26 | 1 | -36/+28 |
| | | | | Android<4 (ancient WebKit) doesn't have full ES5 support. | ||||
* | Whitespace. | Scott González | 2013-02-26 | 1 | -1/+2 |
| | |||||
* | Fix #13471. $().on(".xyz"...) should avoid later crash. | Dave Methvin | 2013-02-26 | 1 | -0/+5 |
| | | | | | | If the event type is an empty string we end up hanging in .off() which makes for mighty hard debugging. Instead treat it as a no-op. Docs seem clear this is not allowed. | ||||
* | Optimisation: Use String instead of window.String. Close gh-1176. | Timo Tijhof | 2013-02-26 | 1 | -1/+1 |
| | | | | Follows-up 22e28b01e60e87b2454f88ca128fb84916b13564. | ||||
* | No ticket: move jQuery.expando to core | Richard Gibson | 2013-02-25 | 2 | -4/+3 |
| | |||||
* | No ticket: reduce support.js | Richard Gibson | 2013-02-25 | 1 | -19/+17 |
| | |||||
* | Fix #13505: Yet another detached add patch | Richard Gibson | 2013-02-24 | 1 | -0/+0 |
| | |||||
* | No ticket: Restore support for Android<4.0 | Richard Gibson | 2013-02-23 | 1 | -0/+0 |
| | |||||
* | Fix #13499: selector with leading ID matching only a name | Richard Gibson | 2013-02-22 | 1 | -0/+0 |
| | | | | (cherry picked from commit 5c4ab97a64c162503ac200bc7cea7f3e5725984d) | ||||
* | No ticket: Reduce size in anticipation of Sizzle-free builds | Richard Gibson | 2013-02-22 | 2 | -3/+4 |
| | | | | (cherry picked from commit dbf3056b250bbc279fa947031181f9e25a40bacf) | ||||
* | Fixes typos in core.js and css.js. Closes gh-1175 | Pascal Borreli | 2013-02-21 | 2 | -2/+2 |
| | |||||
* | Adds module to jshintrc | Rick Waldron | 2013-02-21 | 1 | -1/+2 |
| | |||||
* | Support node-like module loaders. Closes gh-1103 | isaacs | 2013-02-20 | 2 | -17/+25 |
| | |||||
* | No ticket: Update Sizzle | Richard Gibson | 2013-02-17 | 1 | -0/+0 |
| | |||||
* | Refactor: Data.prototype.access. Thanks to @RubyLouvre and @gibson042. ↵ | Rick Waldron | 2013-02-13 | 1 | -16/+25 |
| | | | | Closes #1167 | ||||
* | Fix #13265 #13332: traversing methods with text nodes. Close gh-1145. | Richard Gibson | 2013-02-13 | 1 | -24/+35 |
| | |||||
* | Optimized Data rewrite | Rick Waldron | 2013-02-11 | 1 | -60/+92 |
| | |||||
* | Fix #13401: replaceWith(""). Close gh-1163. | Mark Raddatz | 2013-02-08 | 1 | -9/+11 |
| | |||||
* | Ref #13316: Sync all documents on full vs. minified source. Close gh-1147. | Richard Gibson | 2013-02-07 | 1 | -1/+1 |
| | |||||
* | Fix #13310. Get the right display value for disconnected nodes. Close gh-1156. | Oleg | 2013-02-04 | 1 | -4/+13 |
| | |||||
* | Ref fd43865c: restore correct logic | Richard Gibson | 2013-02-04 | 1 | -1/+1 |
| | |||||
* | Match the codebase standard, .split(" ") => .match( core_rnotwhite ) || ↵ | Rick Waldron | 2013-02-03 | 1 | -2/+3 |
| | | | | | | []… no matter how awful it is >:| Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Standardize on a.indexOf(b) === -1, per @gibson042 review notes | Rick Waldron | 2013-02-03 | 1 | -1/+1 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Reduce hasData per @gibson042 review notes. | Rick Waldron | 2013-02-03 | 1 | -4/+1 |
| | | | | Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | Reduce Data.prototype.add by using the returned length value of ↵ | Rick Waldron | 2013-02-03 | 1 | -2/+1 |
| | | | | | | this.owners.push(owner) Signed-off-by: Rick Waldron <waldron.rick@gmail.com> | ||||
* | 2.0: Rewrite data.js (Incl. event, manipulation, tests) | Rick Waldron | 2013-02-03 | 3 | -256/+247 |
| | |||||
* | Update Sizzle: detached node sorting in Webkit. Fixes #13331. | Timmy Willison | 2013-02-01 | 1 | -0/+0 |
| | |||||
* | Fix #13335. Remove "use strict". | Dave Methvin | 2013-02-01 | 2 | -2/+6 |
| | |||||
* | event: Stricter type checking in trigger - Fixes #13360 - Closes gh-1153 | Andrew Plummer | 2013-01-31 | 1 | -2/+2 |
| | | | | | | | | | | | | Squashed commit of the following: commit 5935a362c75ecef04d5ec9775cbcaf2165921e8d Author: Andrew Plummer <plummer.andrew@gmail.com> Date: Fri Feb 1 02:40:42 2013 +0900 Using "hasOwnProperty" to check for direct properties "type" and "namespace" on events before triggering. (cherry picked from commit f005af54e4983658e3ae504111885921c4dca383) | ||||
* | Revert change to visible/hidden selectors until 1.10 and 2.1. Reopens ↵ | Timmy Willison | 2013-01-30 | 1 | -1/+1 |
| | | | | #13132, #10406. | ||||
* | Minor updates. All parameters of an internal function are for internal use only. | Timmy Willison | 2013-01-30 | 1 | -12/+12 |
| | |||||
* | Fix #13349. No need to sort simple .find() cases. | Dave Methvin | 2013-01-29 | 1 | -1/+1 |
| | |||||
* | Fix comment about Safari shortfalls. | Dave Methvin | 2013-01-29 | 1 | -1/+1 |
| | |||||
* | Revert "Fix #13291, no longer need the functionish-regex guard." | Dave Methvin | 2013-01-29 | 1 | -1/+2 |
| | | | | | | Turns out this is still needed by Safari 5.1, which we're still supporting. This reverts commit c4b1da40075532e4f14821b1519ae0ef6665bf1e. | ||||
* | Fix #13150, .has() w/o args checks for any callbacks. Close gh-1111. | adamcoulombe | 2013-01-27 | 1 | -2/+3 |
| | |||||
* | Fix #13315 for IE9: compare typeof xmlNode.method to var instead of literal ↵ | Richard Gibson | 2013-01-27 | 5 | -6/+9 |
| | | | | | | "undefined" for safer uglification (cherry picked from commit ec9b38a34fb9bd81d1903cf12b69466f699abca5) | ||||
* | Fix #12656. Make event shorthands excludable. | Dave Methvin | 2013-01-27 | 2 | -27/+26 |
| | |||||
* | Fix #12846. Restore overflow when animation is stopped. | Dave Methvin | 2013-01-26 | 1 | -1/+1 |
| | |||||
* | Fix #13291, no longer need the functionish-regex guard. | Dave Methvin | 2013-01-26 | 1 | -1/+1 |
| | |||||
* | Fix #13282: QtWebKit (e.g., phantomjs) can only apply Arrays | Richard Gibson | 2013-01-24 | 1 | -4/+12 |
| | |||||
* | Fix #13281: update Sizzle | Richard Gibson | 2013-01-24 | 1 | -0/+0 |
| | |||||
* | Don't try and convert data for 204 No Content responses. Fixes #13292. Fixes ↵ | byroot | 2013-01-24 | 1 | -3/+8 |
| | | | | #13261. | ||||
* | Ignore file inputs when serializing forms. File input serialization is ↵ | Timmy Willison | 2013-01-23 | 1 | -1/+1 |
| | | | | handled by plugins. Fixes #13306. | ||||
* | Fix failing tests, add support for empty spans in Opera. Supplements #13132, ↵ | Timmy Willison | 2013-01-21 | 1 | -1/+3 |
| | | | | #10406. | ||||
* | Treat an element as hidden if either offsetWidth or offsetHeight is 0. Fixes ↵ | Timmy Willison | 2013-01-21 | 1 | -1/+1 |
| | | | | #13132, #10406. |