mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Core styleguide cleanup. Fixes #10586
This commit is contained in:
parent
fc13f5b6ce
commit
a9f1346c16
22
src/ajax.js
22
src/ajax.js
@ -82,7 +82,7 @@ function addToPrefiltersOrTransports( structure ) {
|
|||||||
placeBefore;
|
placeBefore;
|
||||||
|
|
||||||
// For each dataType in the dataTypeExpression
|
// For each dataType in the dataTypeExpression
|
||||||
for(; i < length; i++ ) {
|
for ( ; i < length; i++ ) {
|
||||||
dataType = dataTypes[ i ];
|
dataType = dataTypes[ i ];
|
||||||
// We control if we're asked to add before
|
// We control if we're asked to add before
|
||||||
// any existing element
|
// any existing element
|
||||||
@ -113,7 +113,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jqX
|
|||||||
executeOnly = ( structure === prefilters ),
|
executeOnly = ( structure === prefilters ),
|
||||||
selection;
|
selection;
|
||||||
|
|
||||||
for(; i < length && ( executeOnly || !selection ); i++ ) {
|
for ( ; i < length && ( executeOnly || !selection ); i++ ) {
|
||||||
selection = list[ i ]( options, originalOptions, jqXHR );
|
selection = list[ i ]( options, originalOptions, jqXHR );
|
||||||
// If we got redirected to another dataType
|
// If we got redirected to another dataType
|
||||||
// we try there if executing only and not done already
|
// we try there if executing only and not done already
|
||||||
@ -144,7 +144,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, jqX
|
|||||||
function ajaxExtend( target, src ) {
|
function ajaxExtend( target, src ) {
|
||||||
var key, deep,
|
var key, deep,
|
||||||
flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
||||||
for( key in src ) {
|
for ( key in src ) {
|
||||||
if ( src[ key ] !== undefined ) {
|
if ( src[ key ] !== undefined ) {
|
||||||
( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
|
( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];
|
||||||
}
|
}
|
||||||
@ -553,7 +553,7 @@ jQuery.extend({
|
|||||||
// We extract error from statusText
|
// We extract error from statusText
|
||||||
// then normalize statusText and status for non-aborts
|
// then normalize statusText and status for non-aborts
|
||||||
error = statusText;
|
error = statusText;
|
||||||
if( !statusText || status ) {
|
if ( !statusText || status ) {
|
||||||
statusText = "error";
|
statusText = "error";
|
||||||
if ( status < 0 ) {
|
if ( status < 0 ) {
|
||||||
status = 0;
|
status = 0;
|
||||||
@ -604,7 +604,7 @@ jQuery.extend({
|
|||||||
if ( map ) {
|
if ( map ) {
|
||||||
var tmp;
|
var tmp;
|
||||||
if ( state < 2 ) {
|
if ( state < 2 ) {
|
||||||
for( tmp in map ) {
|
for ( tmp in map ) {
|
||||||
statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
|
statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ];
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -859,7 +859,7 @@ function ajaxHandleResponses( s, jqXHR, responses ) {
|
|||||||
firstDataType;
|
firstDataType;
|
||||||
|
|
||||||
// Fill responseXXX fields
|
// Fill responseXXX fields
|
||||||
for( type in responseFields ) {
|
for ( type in responseFields ) {
|
||||||
if ( type in responses ) {
|
if ( type in responses ) {
|
||||||
jqXHR[ responseFields[type] ] = responses[ type ];
|
jqXHR[ responseFields[type] ] = responses[ type ];
|
||||||
}
|
}
|
||||||
@ -938,13 +938,13 @@ function ajaxConvert( s, response ) {
|
|||||||
conv2;
|
conv2;
|
||||||
|
|
||||||
// For each dataType in the chain
|
// For each dataType in the chain
|
||||||
for( i = 1; i < length; i++ ) {
|
for ( i = 1; i < length; i++ ) {
|
||||||
|
|
||||||
// Create converters map
|
// Create converters map
|
||||||
// with lowercased keys
|
// with lowercased keys
|
||||||
if ( i === 1 ) {
|
if ( i === 1 ) {
|
||||||
for( key in s.converters ) {
|
for ( key in s.converters ) {
|
||||||
if( typeof key === "string" ) {
|
if ( typeof key === "string" ) {
|
||||||
converters[ key.toLowerCase() ] = s.converters[ key ];
|
converters[ key.toLowerCase() ] = s.converters[ key ];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -955,7 +955,7 @@ function ajaxConvert( s, response ) {
|
|||||||
current = dataTypes[ i ];
|
current = dataTypes[ i ];
|
||||||
|
|
||||||
// If current is auto dataType, update it to prev
|
// If current is auto dataType, update it to prev
|
||||||
if( current === "*" ) {
|
if ( current === "*" ) {
|
||||||
current = prev;
|
current = prev;
|
||||||
// If no auto and dataTypes are actually different
|
// If no auto and dataTypes are actually different
|
||||||
} else if ( prev !== "*" && prev !== current ) {
|
} else if ( prev !== "*" && prev !== current ) {
|
||||||
@ -967,7 +967,7 @@ function ajaxConvert( s, response ) {
|
|||||||
// If there is no direct converter, search transitively
|
// If there is no direct converter, search transitively
|
||||||
if ( !conv ) {
|
if ( !conv ) {
|
||||||
conv2 = undefined;
|
conv2 = undefined;
|
||||||
for( conv1 in converters ) {
|
for ( conv1 in converters ) {
|
||||||
tmp = conv1.split( " " );
|
tmp = conv1.split( " " );
|
||||||
if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) {
|
if ( tmp[ 0 ] === prev || tmp[ 0 ] === "*" ) {
|
||||||
conv2 = converters[ tmp[1] + " " + current ];
|
conv2 = converters[ tmp[1] + " " + current ];
|
||||||
|
@ -66,7 +66,7 @@ jQuery.extend({
|
|||||||
if ( obj == null ) {
|
if ( obj == null ) {
|
||||||
obj = promise;
|
obj = promise;
|
||||||
} else {
|
} else {
|
||||||
for( var key in promise ) {
|
for ( var key in promise ) {
|
||||||
obj[ key ] = promise[ key ];
|
obj[ key ] = promise[ key ];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -124,7 +124,7 @@ jQuery.extend({
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
if ( length > 1 ) {
|
if ( length > 1 ) {
|
||||||
for( ; i < length; i++ ) {
|
for ( ; i < length; i++ ) {
|
||||||
if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) {
|
if ( args[ i ] && args[ i ].promise && jQuery.isFunction( args[ i ].promise ) ) {
|
||||||
args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) );
|
args[ i ].promise().then( resolveFunc(i), deferred.reject, progressFunc(i) );
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user