Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | squash! Set attributes all at once, src last | Dave Methvin | 2018-05-14 | 1 | -8/+5 |
| | |||||
* | Ajax: Allow custom attributes when script transport is used | Dave Methvin | 2018-05-14 | 1 | -3/+3 |
| | | | | | | | Fixes gh-3028 Ref gh-2612 Useful, for example, to add `nonce`, `integrity`, or `crossorigin`. | ||||
* | Build: Put all AMD modules in "src/" in strict mode | Michał Gołębiowski | 2016-04-25 | 1 | -0/+2 |
| | | | | Fixes gh-3073 | ||||
* | Ajax: improve content-type detection | Oleg Gaidarenko | 2015-10-12 | 1 | -1/+1 |
| | | | | | Fixes gh-2584 Closes gh-2643 | ||||
* | Ajax: correct indentation | Oleg Gaidarenko | 2015-10-12 | 1 | -3/+3 |
| | | | | | | As noted by @arthurvr Follow-up for b078a62013782c7424a4a61a240c23c4c0b42614 | ||||
* | Ajax: Mitigate possible XSS vulnerability | Oleg Gaidarenko | 2015-10-12 | 1 | -0/+7 |
| | | | | | | | Proposed by @jaubourg Fixes gh-2432 Closes gh-2588 | ||||
* | Build: Update jscs and lint files | Oleg Gaidarenko | 2015-09-07 | 1 | -8/+9 |
| | | | | Fixes gh-2056 | ||||
* | Core: Align branches: remove an unused variable, add comments | Michał Gołębiowski | 2015-04-27 | 1 | -0/+2 |
| | | | | Closes gh-2233 | ||||
* | Ajax: simplify one ajax call and add explanatory comment | Oleg Gaidarenko | 2015-02-15 | 1 | -1/+0 |
| | | | | | | | * Remove "async = true" from script transport since it was needed for FF < 4 and old Opera which we do not support anymore * Add comment to "evalUrl" method on why "type" field should be explicit | ||||
* | Build: Don't assume the browser environment; smoke test on Node w/ jsdom | Michał Gołębiowski | 2014-12-26 | 1 | -1/+2 |
| | | | | | Fixes gh-1950 Closes gh-1949 | ||||
* | Build: update grunt-jscs-checker and pass with the new rules | Timmy Willison | 2014-07-17 | 1 | -1/+2 |
| | |||||
* | AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163. | Timmy Willison | 2013-08-15 | 1 | -0/+7 |
| | |||||
* | Removes unnecessary call to `.off()` as noted by @dcherman. | jaubourg | 2013-01-21 | 1 | -1/+1 |
| | |||||
* | Further script transport cleanup, close gh-1123. | jaubourg | 2013-01-20 | 1 | -19/+16 |
| | |||||
* | Reduced script transport | jaubourg | 2013-01-20 | 1 | -47/+21 |
| | |||||
* | No ticket: compress ajax. Close gh-1041. | Richard Gibson | 2012-11-25 | 1 | -9/+10 |
| | |||||
* | Set async to true instead of async (prop vs. attr). Closes gh-1039 | Timo Tijhof | 2012-11-21 | 1 | -1/+1 |
| | |||||
* | Strips IIFEs from modules; Always require built jQuery for tests. | Rick Waldron | 2012-06-04 | 1 | -4/+0 |
| | |||||
* | Applies exception in Style Guidelines regarding objects and functions when ↵ | jaubourg | 2011-04-08 | 1 | -2/+2 |
| | | | | they are the last argument of a function call. | ||||
* | Fixes #8744. Makes sure script transport abort method actually removes the ↵ | jaubourg | 2011-04-04 | 1 | -1/+1 |
| | | | | script tag even if readyState exists. | ||||
* | Fixes #8098. Use the fast document.head when available. Don't set unneeded ↵ | Mathias Bynens | 2011-02-02 | 1 | -1/+1 |
| | | | | "script.type = text/javascript". | ||||
* | Script dataType now supports ecmascript mimetypes. | jaubourg | 2011-01-31 | 1 | -2/+2 |
| | |||||
* | Fixes #8082. Text to script converter now returns text. Unit test added. | jaubourg | 2011-01-29 | 1 | -1/+4 |
| | |||||
* | More code style fixes. | jaubourg | 2011-01-23 | 1 | -1/+1 |
| | |||||
* | Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js, | jaubourg | 2011-01-23 | 1 | -17/+12 |
| | |||||
* | Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. ↵ | jaubourg | 2011-01-20 | 1 | -2/+4 |
| | | | | Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added). | ||||
* | The script prefilter now forces cross-domain requests type to GET. | jaubourg | 2011-01-16 | 1 | -0/+1 |
| | |||||
* | Fixes #2994. Not finding a transport now fires the error callbacks and ↵ | jaubourg | 2011-01-16 | 1 | -6/+10 |
| | | | | 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 | -2/+1 |
| | | | | 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(...). | ||||
* | Reworked script and xhr abort logic to take advantage of the fact jXHR.abort ↵ | jaubourg | 2011-01-13 | 1 | -5/+8 |
| | | | | will complete the request itself if not done already. | ||||
* | Script transport now uses ajaxSetup to define script dataType. | jaubourg | 2011-01-12 | 1 | -3/+3 |
| | |||||
* | Renamed src/transports to src/ajax (in case we need prefilters in the future ↵ | jaubourg | 2011-01-06 | 1 | -0/+82 |
and to avoid a separate prefilters directory). |