From: jaubourg Date: Wed, 26 Jan 2011 23:58:31 +0000 (+0100) Subject: Actually does what https://github.com/jquery/jquery/commit/bab8079593913dbc689404aa4e... X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=7d75ea950ea31a6734dc42e2037742b0c6719e8a Actually does what https://github.com/jquery/jquery/commit/bab8079593913dbc689404aa4e83c46b9b4c9355 promised: passes the jXHR as the third argument of prefilters and transport factories. Comitted for completness even if if backs this out in the end and only land in 1.5.1. --- diff --git a/src/ajax.js b/src/ajax.js index 592f297..d8af938 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -88,7 +88,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jXH selection; for(; i < length && ( executeOnly || !selection ); i++ ) { - selection = list[ i ]( options, originalOptions ); + selection = list[ i ]( options, originalOptions, jXHR ); // If we got redirected to another dataType // we try there if not done already if ( typeof selection === "string" ) {