Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 1 | -2/+11 |
| | |||||
* | No ticket: compress ajax. Close gh-1041. | Richard Gibson | 2012-11-25 | 1 | -19/+12 |
| | |||||
* | Strips IIFEs from modules; Always require built jQuery for tests. | Rick Waldron | 2012-06-04 | 1 | -4/+0 |
| | |||||
* | Prevents tests for replaceInData to take place if replaceInUrl is already true. | jaubourg | 2012-04-23 | 1 | -1/+1 |
| | |||||
* | remove redundant condition | Richard Gibson | 2012-04-22 | 1 | -2/+1 |
| | |||||
* | style adherence | Richard Gibson | 2012-04-22 | 1 | -1/+1 |
| | |||||
* | refactor jsonp.js for size and clarity | Richard Gibson | 2012-04-22 | 1 | -51/+55 |
| | |||||
* | Fixes #8205. Mitigates memory usage by recycling jsonp callback names the ↵ | jaubourg | 2012-04-20 | 1 | -2/+12 |
| | | | | safest possible way (no kittens were harmed in the making of this). Doesn't even try to delete window properties (would necessitate a try/catch for IE which makes the cost in size prohibitive). Unit tests added. | ||||
* | Fixes #4624... 3 years later, people! | jaubourg | 2012-03-07 | 1 | -2/+1 |
| | |||||
* | Ensures callback placeholders are tested for and eventually replaced in data ↵ | jaubourg | 2011-04-13 | 1 | -16/+14 |
| | | | | only when contentType is application/x-www-form-urlencoded and data is a string. Removes json to jsonp promotion when jsonp or jsonpCallback options are present. Uses new Deferred.always method to bind cleanUp function. | ||||
* | Applies exception in Style Guidelines regarding objects and functions when ↵ | jaubourg | 2011-04-08 | 1 | -1/+1 |
| | | | | they are the last argument of a function call. | ||||
* | Removes unnecessary parenthesis from regular expression. | jaubourg | 2011-02-24 | 1 | -1/+1 |
| | |||||
* | Fixes #8115. Renames all references to jXHR with jqXHR in the code (like was ↵ | jaubourg | 2011-02-01 | 1 | -2/+2 |
| | | | | done in the doc). | ||||
* | Makes sure jsonp callback is not left in the global namespace in case of an ↵ | jaubourg | 2011-01-31 | 1 | -22/+15 |
| | | | | early abort (beforeSend). Unit test added. | ||||
* | Fixes potential collisions between jsonp requests from different jQuery ↵ | jaubourg | 2011-01-29 | 1 | -1/+1 |
| | | | | instances by prefixing the jsonp callback name with the jQuery expando rather than with "jsonp". | ||||
* | Fixes #8054 by reverting feature enhancement 5812 (4920). Regexps no longer ↵ | jaubourg | 2011-01-26 | 1 | -1/+1 |
| | | | | searches for %3F in url or data to find jsonp callback placeholders. | ||||
* | More code style fixes. | jaubourg | 2011-01-23 | 1 | -3/+2 |
| | |||||
* | Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js, | jaubourg | 2011-01-23 | 1 | -9/+11 |
| | |||||
* | Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. ↵ | jaubourg | 2011-01-20 | 1 | -1/+2 |
| | | | | Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added). | ||||
* | Setting the jsonp option to false now inhibits any url manipulation ↵ | jaubourg | 2011-01-16 | 1 | -11/+23 |
| | | | | regarding the callback. | ||||
* | Fixes #2994. Not finding a transport now fires the error callbacks and ↵ | jaubourg | 2011-01-16 | 1 | -40/+31 |
| | | | | doesn't make ajax return false. Had to revise how jsonp and script prefilters & transports work (better separation of concerns). Also took the opportunity to revise jXHR getRequestHeader and abort methods and enabled early transport garbage collection when the request completes. | ||||
* | Moved jQuery.ajax.prefilter and jQuery.ajax.transport to ↵ | jaubourg | 2011-01-13 | 1 | -3/+2 |
| | | | | jQuery.ajaxPrefilter and jQuery.ajaxTransport so that proxying the ajax method doesn't turn into a nightmare. Thanks go to scott_gonzalez and DaveMethvin for pointing out the issue. Also made ajaxSetup return "this" to enable chainable definitions -- jQuery.ajaxSetup(...).ajaxPrefilter(...).ajaxTransport(...). | ||||
* | Fixes #4897. Added ?? as a context-insensitive placeholder for the callback ↵ | jaubourg | 2011-01-12 | 1 | -3/+3 |
| | | | | name of a JSONP request. Unit tests provided. | ||||
* | Fixes #5812. =? will be detected even when it has been escaped during data ↵ | jaubourg | 2011-01-09 | 1 | -1/+1 |
| | | | | serialization. | ||||
* | Fixes #5803. Reworked jsonp prefilter so that it sets the dataType as jsonp ↵ | jaubourg | 2011-01-09 | 1 | -53/+52 |
| | | | | and recognizes requests with originalSettings having jsonp or jsonpCallback to be jsonp. Moved default jsonp option value into ajaxSettings. Attached the transport to "jsonp" which avoids unnecessary testing. Transport factory sets dataType back to json for proper data conversion. | ||||
* | Renamed src/transports to src/ajax (in case we need prefilters in the future ↵ | jaubourg | 2011-01-06 | 1 | -0/+85 |
and to avoid a separate prefilters directory). |