Removed re-usability from jXHR object (no more open, send & onreadystatechange suppor...
[jquery.git] / src / transports / xhr.js
index 129058e..5845087 100644 (file)
@@ -10,7 +10,7 @@ var // Next fake timer id
        xhrUnloadAbortMarker = [];
 
        
-jQuery.xhr.bindTransport( function( s , determineDataType ) {
+jQuery.ajax.transport( function( s , determineDataType ) {
        
        // Cross domain only allowed if supported through XMLHttpRequest
        if ( ! s.crossDomain || jQuery.support.cors ) {
@@ -188,4 +188,4 @@ jQuery(window).bind( "unload" , function() {
        
 });
 
-})(jQuery);
+})( jQuery );