diff options
author | Oleg <markelog@gmail.com> | 2012-05-01 14:39:45 -0400 |
---|---|---|
committer | Rick Waldron waldron.rick@gmail.com <waldron.rick@gmail.com> | 2012-05-01 14:39:45 -0400 |
commit | 6bed348a007f8467dfc09cf63a1783bce673c3f4 (patch) | |
tree | 299075c77f89a6bc8880c4b58a1145ec1b5d3283 /src/ajax.js | |
parent | dc3c983be094ee5c90d992c89b3a805feb6c4e26 (diff) | |
download | jquery-6bed348a007f8467dfc09cf63a1783bce673c3f4.tar.gz jquery-6bed348a007f8467dfc09cf63a1783bce673c3f4.zip |
jQuery.ajaxSetup() data is merged with params. Fixes #10524
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index 3de192766..b5d4865ff 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -183,7 +183,6 @@ jQuery.fn.extend({ // Otherwise, build a param string } else if ( typeof params === "object" ) { - params = jQuery.param( params, jQuery.ajaxSettings.traditional ); type = "POST"; } } |