aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/ajax.js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2007-08-21 04:46:07 +0000
committerJohn Resig <jeresig@gmail.com>2007-08-21 04:46:07 +0000
commit8c15e852a4614ba5a5100e1c6e8a833c39b4ca79 (patch)
treefd2707b6fa9ba96148848cd319baead3ad245af4 /src/ajax/ajax.js
parente112e6b04d1736d3a847d44b96f7178175e17a15 (diff)
downloadjquery-8c15e852a4614ba5a5100e1c6e8a833c39b4ca79.tar.gz
jquery-8c15e852a4614ba5a5100e1c6e8a833c39b4ca79.zip
Two quick fixes in relation to #1028. ajaxSetup shouldn't be deep and the boolean arg should be used, not overwritten with 'true'.
Diffstat (limited to 'src/ajax/ajax.js')
-rw-r--r--src/ajax/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index d9b3a3d8b..6c08391e0 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -434,7 +434,7 @@ jQuery.extend({
* @cat Ajax
*/
ajaxSetup: function( settings ) {
- jQuery.extend( true, jQuery.ajaxSettings, settings );
+ jQuery.extend( jQuery.ajaxSettings, settings );
},
ajaxSettings: {