Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Simplified headers tests: removed multiline headers (support is far too ↵ | jaubourg | 2010-12-11 | 3 | -46/+24 | |
| | | | | | | | | | | | | servers & browsers dependant) and made all the tests in a single request. | |||||
* | | | Tweaked the headers test to be apache independent and actually work. | jaubourg | 2010-12-11 | 2 | -20/+17 | |
| | | | ||||||
* | | | Changed document.location to window.location per Ben Alman advice. | jaubourg | 2010-12-10 | 1 | -1/+1 | |
| | | | ||||||
* | | | Removed non-standard (and not that useful) xhr emulation methods & reworked ↵ | jaubourg | 2010-12-10 | 2 | -20/+53 | |
| | | | | | | | | | | | | the headers test as a consequence. | |||||
* | | | Rewrite of the Ajax module by Julian Aubourg. Some (dated) details can be ↵ | jaubourg | 2010-12-09 | 6 | -14/+559 | |
| | | | | | | | | | | | | found here: http://oksoclap.com/6Y26bm1ZsB more details are forthcoming. Fixes #7195. | |||||
* | | | Backing out cec68e2b00d86357c18b576cbaed52cc1ea42a74, was causing serialize ↵ | jeresig | 2010-12-09 | 1 | -76/+56 | |
| | | | | | | | | | | | | tests to fail. Un-fixes #5566. | |||||
* | | | Backing out fb6c038bf00296480234c971a1664ac01ca1479e, was causing ↵ | jeresig | 2010-12-09 | 1 | -11/+4 | |
| | | | | | | | | | | | | jQuery.param tests to fail - unfixes #7413. | |||||
* | | | Merge branch 'bug5566' of https://github.com/csnover/jquery into csnover-bug5566 | jeresig | 2010-12-09 | 1 | -56/+76 | |
|\| | | ||||||
| * | | Clone fragments in domManip using jQuery.clone instead of ↵ | Colin Snover | 2010-12-06 | 1 | -56/+76 | |
| | | | | | | | | | | | | DocumentFragment.cloneNode in order to carry over event data. Fixes #5566, #6997. | |||||
* | | | Merge branch 'attrFollowupFix' of https://github.com/jitter/jquery into ↵ | jeresig | 2010-12-09 | 1 | -4/+4 | |
|\ \ \ | | | | | | | | | | | | | jitter-attrFollowupFix | |||||
| * | | | Fix attr() problems in IE with attribute nodes. Followup to commit b50f41a2. | Anton M | 2010-12-07 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | | | | IE can't add properties on an attribute-node element, thus we handle it like text-/comment-nodes. | |||||
* | | | | Merge branch 'support_6897' of https://github.com/rwldrn/jquery into ↵ | jeresig | 2010-12-09 | 1 | -0/+25 | |
|\ \ \ \ | | | | | | | | | | | | | | | | rwldrn-support_6897 | |||||
| * | | | | Support unit test for #6897 | rwldrn | 2010-11-09 | 1 | -0/+25 | |
| | |_|/ | |/| | | ||||||
* | | | | Merge branch 'bug_7413' of https://github.com/rwldrn/jquery into rwldrn-bug_7413 | jeresig | 2010-12-09 | 1 | -4/+11 | |
|\ \ \ \ | |_|/ / |/| | | | ||||||
| * | | | Fixes #7413; isEmptyObject() check to see if obj passes isPlainObject | rwldrn | 2010-11-09 | 1 | -4/+11 | |
| |/ / | ||||||
* | | | Merge branch 'bug7524' of https://github.com/csnover/jquery into csnover-bug7524 | John Resig | 2010-12-06 | 1 | -1/+4 | |
|\ \ \ | ||||||
| * | | | Only try to get data attributes for a jQuery-wrapped object if it is ↵ | Colin Snover | 2010-12-03 | 1 | -1/+4 | |
| | |/ | |/| | | | | | | | actually an Element node. Fixes #7524. | |||||
* | | | Merge branch 'bug7531' of https://github.com/csnover/jquery into csnover-bug7531 | John Resig | 2010-12-06 | 1 | -0/+10 | |
|\ \ \ | ||||||
| * | | | Coerce s.url to string before calling replace, since replace is also a ↵ | Colin Snover | 2010-11-17 | 1 | -0/+10 | |
| | | | | | | | | | | | | | | | | method of a Location object. Fixes #7531. | |||||
* | | | | Merge branch 't6398' of https://github.com/jitter/jquery into jitter-t6398 | John Resig | 2010-12-06 | 1 | -3/+10 | |
|\ \ \ \ | ||||||
| * | | | | Make sure custom events named "submit" can be bound to non DOM elements in ↵ | Anton M | 2010-11-21 | 1 | -3/+10 | |
| |/ / / | | | | | | | | | | | | | IE too. Fixes 6398. | |||||
* | | | | Merge branch 't4386' of https://github.com/jitter/jquery into jitter-t4386 | John Resig | 2010-12-06 | 1 | -1/+3 | |
|\ \ \ \ | ||||||
| * | | | | Make sure IE clones body elements correctly. Fixes 4386. | Anton M | 2010-11-21 | 1 | -1/+3 | |
| |/ / / | ||||||
* | | | | Merge branch 't7578' of https://github.com/jitter/jquery into jitter-t7578 | John Resig | 2010-12-06 | 1 | -2/+13 | |
|\ \ \ \ | ||||||
| * | | | | Add unit test for fix to #7578. | Anton M | 2010-11-24 | 1 | -2/+13 | |
| |/ / / | ||||||
* | | | | Merge branch 't5476' of https://github.com/jitter/jquery into jitter-t5476 | John Resig | 2010-12-06 | 1 | -5/+5 | |
|\ \ \ \ | ||||||
| * | | | | Improve performance of get() for negative indices. Fixes #5476. | Anton M | 2010-11-19 | 1 | -5/+5 | |
| |/ / / | ||||||
* | | | | Merge branch 'restrictAttr' of https://github.com/jitter/jquery into ↵ | John Resig | 2010-12-06 | 1 | -3/+48 | |
|\ \ \ \ | | | | | | | | | | | | | | | | jitter-restrictAttr | |||||
| * | | | | Make sure attr() works on non DOM element nodes. Fixes #7202, #7451, #7500. | Anton M | 2010-11-13 | 1 | -3/+48 | |
| | |_|/ | |/| | | | | | | | | | | Also added some tests for this attr(name), attr(name, value) and removeAttr(name). | |||||
* | | | | Handle carriage return characters in className property. Fixes #7673. | Anton M | 2010-12-01 | 1 | -4/+8 | |
| |_|/ |/| | | ||||||
* | | | Convert test/data/text.php to use lf line endings. | Henri Wiechers | 2010-11-12 | 1 | -12/+12 | |
| | | | ||||||
* | | | Convert test/delegatetest.html to use lf line endings. | Henri Wiechers | 2010-11-12 | 1 | -242/+242 | |
| |/ |/| | ||||||
* | | Backing out commit 795e880bba1f7f949df58748f7fd92e50296a8f4 - errors popping ↵ | jeresig | 2010-11-09 | 1 | -35/+0 | |
| | | | | | | | | up in IE 6/7/8. | |||||
* | | Maintain returning 0px from width/height for disconnected nodes for ↵ | jeresig | 2010-11-09 | 2 | -6/+28 | |
| | | | | | | | | backwards compat, for now. Fixes #7395. | |||||
* | | Fixes #7397; Adds 4 supporting unit tests. | rwldrn | 2010-11-09 | 1 | -0/+35 | |
|/ | ||||||
* | Remove conditional that prevents attr from working on non-Element nodes. ↵ | Colin Snover | 2010-11-09 | 1 | -1/+3 | |
| | | | | Fixes #7451. | |||||
* | Merge branch 'fixAdjacentTests' of https://github.com/jitter/jquery into ↵ | John Resig | 2010-11-09 | 1 | -5/+5 | |
|\ | | | | | | | jitter-fixAdjacentTests | |||||
| * | Fix selector tests broken by newer version of Qunit. | Anton M | 2010-11-09 | 1 | -5/+5 | |
| | | ||||||
* | | Ensure that unquoted attribute selectors are quoted (allowing them to go ↵ | John Resig | 2010-11-09 | 1 | -3/+11 | |
| | | | | | | | | into qSA/matchesSelector properly). Fixes #7216. | |||||
* | | Ensure that AJAX requests are actually aborted in all browsers. Fix #7422. | Colin Snover | 2010-11-06 | 1 | -1/+4 | |
|/ | ||||||
* | Limit the scope of the CSS 'auto' change to just height/width. Fixes #7393. | jeresig | 2010-11-03 | 1 | -1/+5 | |
| | ||||||
* | Only change ID on nodes that don't already have an ID for rooted qSA. Fixes ↵ | jeresig | 2010-11-01 | 1 | -1/+6 | |
| | | | | #7212. | |||||
* | Make sure that accessing computed CSS for elements returns 'auto' instead of ↵ | jeresig | 2010-11-01 | 1 | -2/+2 | |
| | | | | '' consistently. Fixes #7337. | |||||
* | Fix tab spacing. | Brandon Aaron | 2010-10-28 | 1 | -27/+27 | |
| | ||||||
* | Calling .hide().show() on a stylesheet-hidden element wasn't bringing it ↵ | jeresig | 2010-10-27 | 1 | -1/+9 | |
| | | | | back. Fixes #7331. | |||||
* | For .show() with no arguments, only set display of elements in the second ↵ | Karl Swedberg | 2010-10-26 | 1 | -1/+14 | |
| | | | | loop if they don't have style.display already set or if style.display isn't none. Fixes #7315. | |||||
* | Backing out fix for #5803 from 3b50eaca2cd0b1439235e39c4e98a6438e8f55b2. | John Resig | 2010-10-25 | 1 | -15/+0 | |
| | ||||||
* | Allow DELETE requests to have a content body, and properly serialize data to ↵ | dmethvin | 2010-10-25 | 1 | -0/+26 | |
| | | | | the url for HEAD requests. Fixes #7285. | |||||
* | Honor stopImmediatePropagation for live/delegate event handlers. Fixes #7217. | dmethvin | 2010-10-25 | 1 | -0/+30 | |
| | ||||||
* | Fixes #7229 and #5803 | rwldrn | 2010-10-24 | 2 | -0/+35 | |
| |