Cleaning up trailing whitespace again.
[jquery.git] / src / transports / script.js
index 5470dec..0db0de6 100644 (file)
@@ -6,34 +6,34 @@ jQuery.extend( true, jQuery.ajaxSettings , {
        accepts: {
                script: "text/javascript, application/javascript"
        },
-       
-       autoDataType: {
+
+       contents: {
                script: /javascript/
        },
-               
-       dataConverters: {
-               "text => script": jQuery.globalEval
+
+       converters: {
+               "text script": jQuery.globalEval
        }
 } );
 
 // Bind script tag hack transport
-jQuery.xhr.bindTransport("script", function(s) {
-       
+jQuery.ajax.transport("script", function(s) {
+
        // Handle cache special case
        if ( s.cache === undefined ) {
                s.cache = false;
        }
-       
+
        // This transport only deals with cross domain get requests
        if ( s.crossDomain && s.async && ( s.type === "GET" || ! s.data ) ) {
-               
+
                s.global = false;
-               
+
                var script,
                        head = document.getElementsByTagName("head")[0] || document.documentElement;
-               
+
                return {
-                       
+
                        send: function(_, callback) {
 
                                script = document.createElement("script");
@@ -43,41 +43,40 @@ jQuery.xhr.bindTransport("script", function(s) {
                                if ( s.scriptCharset ) {
                                        script.charset = s.scriptCharset;
                                }
-                               
+
                                script.src = s.url;
-                               
+
                                // Attach handlers for all browsers
-                               script.onload = script.onreadystatechange = function(statusText) {
-                                       
-                                       if ( (!script.readyState ||
-                                                       script.readyState === "loaded" || script.readyState === "complete") ) {
-                                                               
+                               script.onload = script.onreadystatechange = function( _ , statusText) {
+
+                                       if ( ! script.readyState || /loaded|complete/.test( script.readyState ) ) {
+
                                                // Handle memory leak in IE
                                                script.onload = script.onreadystatechange = null;
-                                               
+
                                                // Remove the script
                                                if ( head && script.parentNode ) {
                                                        head.removeChild( script );
                                                }
-                                               
-                                               script = undefined;
-                                               
-                                               // Callback & dereference
-                                               callback(statusText ? 0 : 200, statusText || "success");
+
+                                               script = 0;
+
+                                               // Callback
+                                               callback( statusText ? 0 : 200, statusText || "success" );
                                        }
                                };
                                // Use insertBefore instead of appendChild  to circumvent an IE6 bug.
                                // This arises when a base node is used (#2709 and #4378).
                                head.insertBefore( script, head.firstChild );
                        },
-                       
+
                        abort: function(statusText) {
                                if ( script ) {
-                                       script.onload(statusText);
+                                       script.onload( 0 , statusText );
                                }
                        }
                };
        }
 });
 
-})(jQuery);
+})( jQuery );