More code style fixes.

This commit is contained in:
jaubourg 2011-01-23 20:46:09 +01:00
parent dd5bf42122
commit ee22c8b34b
3 changed files with 10 additions and 11 deletions

View file

@ -255,7 +255,7 @@ jQuery.extend({
// If options is not an object,
// we simulate pre-1.5 signature
if ( typeof( options ) !== "object" ) {
if ( typeof options !== "object" ) {
options = url;
url = undefined;
}
@ -702,7 +702,7 @@ function inspectPrefiltersOrTransports( structure, options, originalOptions, dat
selected = list[ i ]( options, originalOptions );
// If we got redirected to a different dataType,
// we add it and switch to the corresponding list
if ( typeof( selected ) === "string" && selected !== dataType ) {
if ( typeof selected === "string" && selected !== dataType ) {
options.dataTypes.unshift( selected );
selected = inspectPrefiltersOrTransports(
structure, options, originalOptions, selected, tested );

View file

@ -12,10 +12,9 @@ jQuery.ajaxSetup({
});
// Detect, normalize options and install callbacks for jsonp requests
// (dataIsString is used internally)
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, dataIsString ) {
jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, dataIsString /* internal */ ) {
dataIsString = ( typeof( s.data ) === "string" );
dataIsString = ( typeof s.data === "string" );
if ( s.dataTypes[ 0 ] === "jsonp" ||
originalSettings.jsonpCallback ||