Skip to content

Commit

Permalink
Passes jXHR object as third argument of prefilters and transport fact…
Browse files Browse the repository at this point in the history
…ories.
  • Loading branch information
jaubourg committed Jan 26, 2011
1 parent d7d6471 commit bab8079
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ajax.js
Expand Up @@ -73,7 +73,7 @@ function addToPrefiltersOrTransports( structure ) {
} }


//Base inspection function for prefilters and transports //Base inspection function for prefilters and transports
function inspectPrefiltersOrTransports( structure, options, originalOptions, function inspectPrefiltersOrTransports( structure, options, originalOptions, jXHR,
dataType /* internal */, inspected /* internal */ ) { dataType /* internal */, inspected /* internal */ ) {


dataType = dataType || options.dataTypes[ 0 ]; dataType = dataType || options.dataTypes[ 0 ];
Expand All @@ -97,15 +97,15 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions,
} else { } else {
options.dataTypes.unshift( selection ); options.dataTypes.unshift( selection );
selection = inspectPrefiltersOrTransports( selection = inspectPrefiltersOrTransports(
structure, options, originalOptions, selection, inspected ); structure, options, originalOptions, jXHR, selection, inspected );
} }
} }
} }
// If we're only executing or nothing was selected // If we're only executing or nothing was selected
// we try the catchall dataType if not done already // we try the catchall dataType if not done already
if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) { if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) {
selection = inspectPrefiltersOrTransports( selection = inspectPrefiltersOrTransports(
structure, options, originalOptions, "*", inspected ); structure, options, originalOptions, jXHR, "*", inspected );
} }
// unnecessary when only executing (prefilters) // unnecessary when only executing (prefilters)
// but it'll be ignored by the caller in that case // but it'll be ignored by the caller in that case
Expand Down Expand Up @@ -565,7 +565,7 @@ jQuery.extend({
} }


// Apply prefilters // Apply prefilters
inspectPrefiltersOrTransports( prefilters, s, options ); inspectPrefiltersOrTransports( prefilters, s, options, jXHR );


// Uppercase the type // Uppercase the type
s.type = s.type.toUpperCase(); s.type = s.type.toUpperCase();
Expand Down Expand Up @@ -638,7 +638,7 @@ jQuery.extend({
} }


// Get transport // Get transport
transport = inspectPrefiltersOrTransports( transports, s, options ); transport = inspectPrefiltersOrTransports( transports, s, options, jXHR );


// If no transport, we auto-abort // If no transport, we auto-abort
if ( !transport ) { if ( !transport ) {
Expand Down

0 comments on commit bab8079

Please sign in to comment.