Moved jQuery.ajax.prefilter and jQuery.ajax.transport to jQuery.ajaxPrefilter and jQuery.ajaxTransport so that proxying the ajax method doesn't turn into a nightmare. Thanks go to scott_gonzalez and DaveMethvin for pointing out the issue. Also made ajaxSetup return "this" to enable chainable definitions -- jQuery.ajaxSetup(...).ajaxPrefilter(...).ajaxTransport(...).
This commit is contained in:
parent
44fc87f66c
commit
a8fa5f2ec1
4 changed files with 11 additions and 12 deletions
13
src/ajax.js
13
src/ajax.js
|
@ -161,6 +161,7 @@ jQuery.extend({
|
|||
|
||||
ajaxSetup: function( settings ) {
|
||||
jQuery.extend( true, jQuery.ajaxSettings, settings );
|
||||
return this;
|
||||
},
|
||||
|
||||
ajaxSettings: {
|
||||
|
@ -599,7 +600,7 @@ jQuery.extend({
|
|||
}
|
||||
|
||||
// Get transport
|
||||
transport = jQuery.ajax.prefilter( s , options ).transport( s );
|
||||
transport = jQuery.ajaxPrefilter( s , options ).ajaxTransport( s );
|
||||
|
||||
// Watch for a new set of requests
|
||||
if ( s.global && jQuery.active++ === 0 ) {
|
||||
|
@ -849,7 +850,7 @@ function ajax_selectOrExecute( structure , s ) {
|
|||
}
|
||||
}
|
||||
|
||||
return noSelect ? jQuery.ajax : selected;
|
||||
return noSelect ? jQuery : selected;
|
||||
}
|
||||
|
||||
// Add an element to one of the structures in ajaxSettings
|
||||
|
@ -908,13 +909,13 @@ function ajax_addElement( structure , args ) {
|
|||
}
|
||||
}
|
||||
|
||||
return jQuery.ajax;
|
||||
return jQuery;
|
||||
}
|
||||
|
||||
// Install prefilter & transport methods
|
||||
jQuery.each( [ "prefilter" , "transport" ] , function( _ , name ) {
|
||||
_ = name + "s";
|
||||
jQuery.ajax[ name ] = function() {
|
||||
jQuery.each( [ "Prefilter" , "Transport" ] , function( _ , name ) {
|
||||
_ = name.toLowerCase() + "s";
|
||||
jQuery[ "ajax" + name ] = function() {
|
||||
return ajax_addElement( _ , arguments );
|
||||
};
|
||||
} );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue