aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Ajax: remove deprecated extensions from ajax promise"Oleg Gaidarenko2015-11-131-4/+6
| | | | This reverts commit 9d1b989f20b550af3590691723b0620f6914626e.
* Revert "Ajax: Mitigate possible XSS vulnerability"Oleg Gaidarenko2015-11-111-1/+1
| | | | This reverts commit b078a62013782c7424a4a61a240c23c4c0b42614.
* Revert "Ajax: Only form-encode requests with a body"Oleg Gaidarenko2015-11-111-6/+0
| | | | This reverts commit 70605c8e5655da996ebd395e3c43423daaa08d9c.
* Event: Separate trigger/simulate into its own moduleDave Methvin2015-11-061-0/+2
| | | | | | | | Fixes gh-1864 Closes gh-2692 This also pulls the focusin/out special event into its own module, since that depends on simulate(). NB: The ajax module triggers events pretty heavily.
* Ajax: Only form-encode requests with a bodyDave Methvin2015-11-021-0/+6
| | | | | Fixes #2658 Closes #2671
* Ajax: improve content-type detectionOleg Gaidarenko2015-10-121-3/+3
| | | | | Fixes gh-2584 Closes gh-2643
* Ajax: Mitigate possible XSS vulnerabilityOleg Gaidarenko2015-10-121-1/+1
| | | | | | | Proposed by @jaubourg Fixes gh-2432 Closes gh-2588
* Ajax: do not quote "throws" option - use dot notation insteadOleg Gaidarenko2015-09-071-1/+1
| | | | | Fixes gh-2571 Closes gh-2542
* Build: Update jscs and lint filesOleg Gaidarenko2015-09-071-26/+58
| | | | Fixes gh-2056
* Core: Switch from modules to just window.setTimeout etc.Michał Gołębiowski2015-06-171-6/+3
| | | | | | Using modules for window.setTimeout etc. made those functions cached and disabled Sinon mocking, making effects tests fail. Just writing window.setTimeout directly is smaller anyway.
* Core: Use window.setTimeout & friends instead of global equivalentsMichał Gołębiowski2015-06-171-1/+4
| | | | Fixes gh-2177
* Ajax: remove deprecated extensions from ajax promiseOleg Gaidarenko2015-02-171-6/+4
| | | | | Fixes gh-2084 Closes gh-2092
* Ajax: $.post and $.get can now take an options objectGeorge Mauer2015-01-111-2/+3
| | | | | Fixes gh-1986 Closes gh-1995
* Build: Don't assume the browser environment; smoke test on Node w/ jsdomMichał Gołębiowski2014-12-261-1/+3
| | | | | Fixes gh-1950 Closes gh-1949
* Ajax: use anchor tag for parsing urlsBen Toews2014-12-111-19/+26
| | | | | Fixes gh-1875 Closes gh-1880
* Ajax: Fix for request aborted in ajaxSendDan Hart2014-11-011-0/+6
| | | | | Fixes gh-1775 Close gh-1619
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-7/+16
|
* Ajax: Remove workaround for IE6/7Chris Antaki2014-07-131-19/+6
| | | | | Closes gh-1597 Ref #8138
* Support: clean up comments and Support notationDave Methvin2014-06-101-6/+5
| | | | Closes gh-1577
* Ajax: Support usage without jQuery.eventTJ VanToll2014-06-021-1/+2
| | | | | Fixes #15118 Closes gh-1588
* Ajax: move ajax event aliases to their own fileTimmy Willison2014-06-021-7/+0
| | | | Fixes #15126
* Fix #14036. Remove user/pass from ajaxLocation. Close gh-1340.njhamann2013-11-131-1/+1
|
* No ticket: fix code style inconsistencies. Closes gh-1361Oleg2013-09-131-5/+5
|
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-0/+1
| | | | across all modules)
* Apply consistent ordering in all modules. -38 bytes. Order modules like ↵Timmy Willison2013-09-091-156/+156
| | | | functions > jQuery.extend > jQuery.fn.extend.
* Move parsing methods to their own files (separates manipulation dependency ↵Timmy Willison2013-09-081-0/+2
| | | | from core)
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-68/+16
|
* Handles HEAD requests as if they always were 204. Fixes #13922.Julian Aubourg2013-05-231-1/+1
|
* Fix #12838: hook point for non-jQuery.ajax synchronous script fetch/execute ↵Richard Gibson2013-04-171-23/+23
| | | | in domManip. Close gh-1051.
* Correct oldIE-related comments, revert some workarounds. Close gh-1207.Michał Gołębiowski2013-04-041-1/+1
|
* Update grunt-contrib-jshint to 0.3.0, close gh-1204.Michał Gołębiowski2013-04-031-2/+2
| | | | | | | | (cherry picked from 4adde5d14534799f3bcfac2771e1513be8a56a2f) Conflicts: src/data.js src/effects.js
* Edited comments and minor adjustments. Fixes #13553. Closes gh-1195.Michał Z. Gołębiowski2013-03-121-4/+5
|
* Fixes #11151, #13388. Minor refactor of response conversion and when/wherejaubourg2013-02-281-41/+44
| | | | | | responseXXX fields are set on the jqXHR. Close gh-1164. (Cherry-picked from 69b3d5ce0f081d3f113b2917495f35df160f8522)
* Optimisation: Use String instead of window.String. Close gh-1176.Timo Tijhof2013-02-261-1/+1
| | | | Follows-up 22e28b01e60e87b2454f88ca128fb84916b13564.
* Don't try and convert data for 204 No Content responses. Fixes #13292. Fixes ↵byroot2013-01-241-3/+8
| | | | #13261.
* Fixes awkward spacingjaubourg2012-11-291-3/+2
|
* Simplifies how url is kept devoid of anti-cache parameter for ifModified ↵jaubourg2012-11-291-16/+16
| | | | requests. Also, renames ifModifiedKey to cacheURL so that it now conveys the variable's nature rather than its purpose. -5 min/gzipped.
* Alias options.method to options.type. Fixes #12004.Matt Farmer2012-11-281-0/+3
|
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-3/+3
|
* No ticket: compress ajax. Close gh-1041.Richard Gibson2012-11-251-282/+255
|
* Uses an additive approach to generating anti-cache parameters rather than a ↵jaubourg2012-10-161-1/+3
| | | | timestamp. Fixes #12550
* Handle a falsy URL in the settings object for jQuery.ajax. Fixes #10093, ↵Ben Truyman2012-10-161-1/+3
| | | | Closes gh-979
* better, more maintainable version of the prefilters execution and transport ↵jaubourg2012-10-161-35/+20
| | | | selection
* Fix #12637: restore 1.8.1 ajax crossDomain logic. Close gh-944.Richard Gibson2012-10-031-3/+6
|
* Fix #12229, size/consistency improvements. Close gh-887.Richard Gibson2012-09-181-11/+8
|
* Revert "Fix #11586. Ajax DELETE ain't got no body, so data goes to its URL."Dave Methvin2012-08-241-1/+1
| | | | | | This reverts commit c01e022f33575ed45fb8da65be756fc464d40a24. We actually changed DELETE to accept a body on purpose, see http://bugs.jquery.com/ticket/7285 .
* Fix #11586. Ajax DELETE ain't got no body, so data goes to its URL.Dave Methvin2012-08-231-1/+1
|
* Calling load with null as the data parameter now properly issues a GET ↵jaubourg2012-08-161-1/+1
| | | | request, not a POST request. Unit tests added. Fixes #12234.
* Quote reserved keyword 'throws' to satisfy yui compressor. Fixes #12158.Timmy Willison2012-07-301-1/+1
|
* Clean up regexen; use common regex for numbers. Close gh-862.Richard Gibson2012-07-221-1/+1
|