aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Yet another missing semicolon!jaubourg2011-01-111-1/+1
* Fixes #6230. Added a unit test to control that, since the ajax rewrite, setti...jaubourg2011-01-111-0/+22
* Fixes 4825. jQuery.fn.load: use the jXHR's Promise interface to get the actua...jaubourg2011-01-112-5/+25
* Merge branch 'master' of github.com:jquery/jquery into jquery-masterColin Snover2011-01-091-1/+1
|\
| * Fixes a race condition in JSONP Local test.jaubourg2011-01-101-1/+1
* | Ensure that buildFragment clones elements properly in all browsers. Fixes #38...Colin Snover2011-01-094-15/+48
|/
* Revert fb4445070cd9e06929c7b6f27c10dbf42d4a3367 which is no longer necessary ...Colin Snover2011-01-091-14/+3
* Ensure that the DOM element ref in an event handler is removed by cleanData t...Dave Methvin2011-01-091-0/+5
* Change embedded regexp to a variable (for #6876).Dave Methvin2011-01-091-2/+3
* Moved unload abort code so that the event is only bound if the xhr transport ...jaubourg2011-01-091-16/+21
* Fixes #5812. =? will be detected even when it has been escaped during data se...jaubourg2011-01-092-2/+18
* Fixes #5803. Reworked jsonp prefilter so that it sets the dataType as jsonp a...jaubourg2011-01-091-53/+52
* Make it so prefilters get access to the original settings.jaubourg2011-01-091-1/+1
* Simplified cross-domain detection tests.jaubourg2011-01-091-33/+13
* Fixes #5955. Option crossDomain now forces ajax to consider a request as cros...jaubourg2011-01-092-8/+26
* Make sure prefilters have been called and transport has been selected before ...jaubourg2011-01-091-3/+3
* Added a test for retrying a request on error using jQuery.ajax(this). Works a...jaubourg2011-01-091-0/+23
* Fixes #7465. Reworked the regexp and associated test for cross-domain detecti...jaubourg2011-01-092-2/+59
* Fixes #7868. ResponseText is now properly propagated for error callbacks.jaubourg2011-01-094-9/+34
* Fixes #7881. Setting contentType to false will prevent the Content-Type heade...jaubourg2011-01-093-8/+40
* Added a simple cache for xhr objects in the xhr transport.jaubourg2011-01-091-1/+8
* Added missing commas.jaubourg2011-01-071-7/+7
* Renamed "complete" to "done" in order to avoid conflicts with jXHR.complete.jaubourg2011-01-063-21/+21
* Fixed mixing of tabs & spaces to make JSLint happier.jaubourg2011-01-061-4/+4
* Renamed src/transports to src/ajax (in case we need prefilters in the future ...jaubourg2011-01-067-12/+12
* Cleaning up trailing whitespace again.Colin Snover2011-01-057-295/+295
* Revert "Register as a CommonJS async module if in that kind of environment. F...wycats2011-01-053-35/+23
* "then" renamed "complete" and new "then" method defined using "complete" and ...jaubourg2011-01-053-36/+40
* Updating year to 2011.jeresig2011-01-041-1/+1
* When serializing text, encode all line breaks as CRLF pairs per the applicati...Dave Methvin2010-12-312-6/+6
* Merge branch 'deferred' of github.com:jquery/jquery into deferredjaubourg2010-12-310-0/+0
|\
| * Simplified the way a Promise is tested for (removed promiseMarker). Removed i...jaubourg2010-12-302-44/+30
| * Merge branch 'master' of github.com:jquery/jquery into deferredjaubourg2010-12-301-7/+6
| |\
| * | Revised conversion logic to handle converter equal to true properly.jaubourg2010-12-291-14/+19
| * | Introduced a new promise method on deferreds that returns an immutable object...jaubourg2010-12-283-44/+43
| * | Renamed several ajaxSettings options. Removed cors test, fixed failing cors t...jaubourg2010-12-284-59/+27
| * | Merge branch 'master' of github.com:jquery/jquery into deferredjaubourg2010-12-2810-49/+105
| |\ \
| * | | Revised logic in data conversion to account for when dataFilter modifies the ...jaubourg2010-12-251-2/+2
| * | | Removed re-usability from jXHR object (no more open, send & onreadystatechang...jaubourg2010-12-2510-904/+581
| * | | Removed dataCheckers, added true as possible value for dataConverters indicat...jaubourg2010-12-252-61/+24
| * | | Removed custom method in isDeferred and when.unknown2010-12-252-31/+7
| * | | Deferred cannot be cancelled by returning false in a callback. Exception in t...unknown2010-12-252-115/+41
| * | | Removed a console.log :/unknown2010-12-251-2/+0
| * | | Capitalized Deferred & _Deferred to clearly mark them as new types, like Event.unknown2010-12-243-28/+28
| * | | Changed dataConverters key format.unknown2010-12-245-30/+19
| * | | jQuery.parseXML extracted from ajax & added to core, needs unit testing.unknown2010-12-241-0/+22
| * | | Merge branch 'deferred' of github.com:jquery/jquery into deferredunknown2010-12-240-0/+0
| |\ \ \
| | * | | Removed NFE to make old Safari happy and avoid leaks in IE (as per David Murd...jaubourg2010-12-211-2/+2
| | * | | Rewrote the data conversion logic in ajax. Should be cleaner and faster.jaubourg2010-12-212-111/+69
| | * | | Renamed jQuery.xhr.bindTransport as jQuery.xhr.transport. Generalized the imp...jaubourg2010-12-215-117/+103