Skip to content

Commit

Permalink
Fixes #8146. Custom fields in xhrFields are now set after the XMLHttp…
Browse files Browse the repository at this point in the history
…Request object has been opened.
  • Loading branch information
jaubourg committed Feb 3, 2011
1 parent d77a2a2 commit 823eeca
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ajax/xhr.js
Expand Up @@ -85,13 +85,6 @@ if ( jQuery.support.ajax ) {
handle, handle,
i; i;


// Apply custom fields if provided
if ( s.xhrFields ) {
for ( i in s.xhrFields ) {
xhr[ i ] = s.xhrFields[ i ];
}
}

// Open the socket // Open the socket
// Passing null username, generates a login popup on Opera (#2865) // Passing null username, generates a login popup on Opera (#2865)
if ( s.username ) { if ( s.username ) {
Expand All @@ -100,6 +93,13 @@ if ( jQuery.support.ajax ) {
xhr.open( s.type, s.url, s.async ); xhr.open( s.type, s.url, s.async );
} }


// Apply custom fields if provided
if ( s.xhrFields ) {
for ( i in s.xhrFields ) {
xhr[ i ] = s.xhrFields[ i ];
}
}

// Requested-With header // Requested-With header
// Not set for crossDomain requests with no content // Not set for crossDomain requests with no content
// (see why at http://trac.dojotoolkit.org/ticket/9486) // (see why at http://trac.dojotoolkit.org/ticket/9486)
Expand Down

0 comments on commit 823eeca

Please sign in to comment.