diff options
author | JessThrysoee <jess@thrysoee.dk> | 2011-03-11 17:46:59 +0100 |
---|---|---|
committer | JessThrysoee <jess@thrysoee.dk> | 2011-03-11 17:46:59 +0100 |
commit | 11c26b3cc9bf84f93d34f45056d29a446baeb6c9 (patch) | |
tree | 3318e7dafe571d82dc7cb040017016be2a174c83 /src/ajax.js | |
parent | 515c56f9c6394a4ddadf29c55867f71dec6dcdb7 (diff) | |
download | jquery-11c26b3cc9bf84f93d34f45056d29a446baeb6c9.tar.gz jquery-11c26b3cc9bf84f93d34f45056d29a446baeb6c9.zip |
no need to specifically initialize crossDomain to null
Diffstat (limited to 'src/ajax.js')
-rw-r--r-- | src/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ajax.js b/src/ajax.js index 66b26cd70..4290e295c 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -310,7 +310,6 @@ jQuery.extend({ contentType: "application/x-www-form-urlencoded", processData: true, async: true, - crossDomain: null, /* timeout: 0, data: null, @@ -320,6 +319,7 @@ jQuery.extend({ cache: null, traditional: false, headers: {}, + crossDomain: null, */ accepts: { |