X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fajax.js;h=383ba2b1ff8543f824cbb0ce9b3a966800527779;hb=b9f2131a9da53fff60549e87428a0efe43f9e80a;hp=592f297f27a7243a79a8b0a92a27753ffe6e846d;hpb=bab8079593913dbc689404aa4e83c46b9b4c9355;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index 592f297..383ba2b 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" ) { @@ -472,7 +472,7 @@ jQuery.extend({ } catch(e) { // We have a parsererror statusText = "parsererror"; - error = "" + e; + error = e; } } } else { @@ -662,7 +662,7 @@ jQuery.extend({ } catch (e) { // Propagate exception as error if not done if ( status < 2 ) { - done( -1, "" + e ); + done( -1, e ); // Simply rethrow otherwise } else { jQuery.error( e ); @@ -849,7 +849,7 @@ function ajaxConvert( s, response ) { conversion, // Conversion function conv, - // Conversion functions (when text is used in-between) + // Conversion functions (transitive conversion) conv1, conv2;