aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax/xhr.js
diff options
context:
space:
mode:
authorRichard Gibson <richard.gibson@gmail.com>2012-11-23 10:29:08 -0500
committerRichard Gibson <richard.gibson@gmail.com>2012-11-25 13:07:46 -0500
commita938d7b1282fc0e5c52502c225ae8f0cef219f0a (patch)
treee65720e5c0ab9c55690cabf16f0a7423c1c2daa7 /src/ajax/xhr.js
parentc27dc018e22260b6ad084dff4505172e6b107178 (diff)
downloadjquery-a938d7b1282fc0e5c52502c225ae8f0cef219f0a.tar.gz
jquery-a938d7b1282fc0e5c52502c225ae8f0cef219f0a.zip
No ticket: compress ajax. Close gh-1041.
Diffstat (limited to 'src/ajax/xhr.js')
-rw-r--r--src/ajax/xhr.js34
1 files changed, 16 insertions, 18 deletions
diff --git a/src/ajax/xhr.js b/src/ajax/xhr.js
index d3422ec79..d00e1f125 100644
--- a/src/ajax/xhr.js
+++ b/src/ajax/xhr.js
@@ -1,12 +1,13 @@
-var xhrCallbacks,
+var xhrCallbacks, xhrSupported,
+ xhrId = 0,
// #5280: Internet Explorer will keep connections alive if we don't abort on unload
- xhrOnUnloadAbort = window.ActiveXObject ? function() {
+ xhrOnUnloadAbort = window.ActiveXObject && function() {
// Abort all pending requests
- for ( var key in xhrCallbacks ) {
- xhrCallbacks[ key ]( 0, 1 );
+ var key;
+ for ( key in xhrCallbacks ) {
+ xhrCallbacks[ key ]( undefined, true );
}
- } : false,
- xhrId = 0;
+ };
// Functions to create xhrs
function createStandardXHR() {
@@ -17,7 +18,7 @@ function createStandardXHR() {
function createActiveXHR() {
try {
- return new window.ActiveXObject( "Microsoft.XMLHTTP" );
+ return new window.ActiveXObject("Microsoft.XMLHTTP");
} catch( e ) {}
}
@@ -37,15 +38,12 @@ jQuery.ajaxSettings.xhr = window.ActiveXObject ?
createStandardXHR;
// Determine support properties
-(function( xhr ) {
- jQuery.extend( jQuery.support, {
- ajax: !!xhr,
- cors: !!xhr && ( "withCredentials" in xhr )
- });
-})( jQuery.ajaxSettings.xhr() );
+xhrSupported = jQuery.ajaxSettings.xhr();
+jQuery.support.cors = !!xhrSupported && ( "withCredentials" in xhrSupported );
+xhrSupported = jQuery.support.ajax = !!xhrSupported;
// Create transport if the browser can provide an xhr
-if ( jQuery.support.ajax ) {
+if ( xhrSupported ) {
jQuery.ajaxTransport(function( s ) {
// Cross domain only allowed if supported through XMLHttpRequest
@@ -86,7 +84,7 @@ if ( jQuery.support.ajax ) {
// (it can always be set on a per-request basis or even using ajaxSetup)
// For same-domain requests, won't change header if already provided.
if ( !s.crossDomain && !headers["X-Requested-With"] ) {
- headers[ "X-Requested-With" ] = "XMLHttpRequest";
+ headers["X-Requested-With"] = "XMLHttpRequest";
}
// Need an extra try/catch for cross domain requests in Firefox 3
@@ -136,10 +134,10 @@ if ( jQuery.support.ajax ) {
xhr.abort();
}
} else {
- status = xhr.status;
- responseHeaders = xhr.getAllResponseHeaders();
responses = {};
+ status = xhr.status;
xml = xhr.responseXML;
+ responseHeaders = xhr.getAllResponseHeaders();
// Construct response list
if ( xml && xml.documentElement /* #4958 */ ) {
@@ -211,7 +209,7 @@ if ( jQuery.support.ajax ) {
abort: function() {
if ( callback ) {
- callback(0,1);
+ callback( undefined, true );
}
}
};