mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Cleaned up some spacing and braces.
This commit is contained in:
parent
c330527318
commit
ab0287681f
@ -53,7 +53,7 @@ jQuery.fn.extend({
|
|||||||
var type = "GET";
|
var type = "GET";
|
||||||
|
|
||||||
// If the second parameter was provided
|
// If the second parameter was provided
|
||||||
if ( params ) {
|
if ( params )
|
||||||
// If it's a function
|
// If it's a function
|
||||||
if ( params.constructor == Function ) {
|
if ( params.constructor == Function ) {
|
||||||
// We assume that it's the callback
|
// We assume that it's the callback
|
||||||
@ -65,7 +65,6 @@ jQuery.fn.extend({
|
|||||||
params = jQuery.param( params );
|
params = jQuery.param( params );
|
||||||
type = "POST";
|
type = "POST";
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
@ -76,14 +75,14 @@ jQuery.fn.extend({
|
|||||||
data: params,
|
data: params,
|
||||||
ifModified: ifModified,
|
ifModified: ifModified,
|
||||||
complete: function(res, status){
|
complete: function(res, status){
|
||||||
if ( status == "success" || !ifModified && status == "notmodified" ) {
|
if ( status == "success" || !ifModified && status == "notmodified" )
|
||||||
// Inject the HTML into all the matched elements
|
// Inject the HTML into all the matched elements
|
||||||
self.html(res.responseText)
|
self.html(res.responseText)
|
||||||
// Execute all the scripts inside of the newly-injected HTML
|
// Execute all the scripts inside of the newly-injected HTML
|
||||||
.evalScripts()
|
.evalScripts()
|
||||||
// Execute callback
|
// Execute callback
|
||||||
.each( callback, [res.responseText, status, res] );
|
.each( callback, [res.responseText, status, res] );
|
||||||
} else
|
else
|
||||||
callback.apply( self, [res.responseText, status, res] );
|
callback.apply( self, [res.responseText, status, res] );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -125,9 +124,8 @@ jQuery.fn.extend({
|
|||||||
return this.find('script').each(function(){
|
return this.find('script').each(function(){
|
||||||
if ( this.src )
|
if ( this.src )
|
||||||
jQuery.getScript( this.src );
|
jQuery.getScript( this.src );
|
||||||
else {
|
else
|
||||||
jQuery.globalEval( this.text || this.textContent || this.innerHTML || "" );
|
jQuery.globalEval( this.text || this.textContent || this.innerHTML || "" );
|
||||||
}
|
|
||||||
}).end();
|
}).end();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -279,6 +277,7 @@ jQuery.extend({
|
|||||||
callback = data;
|
callback = data;
|
||||||
data = null;
|
data = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return jQuery.ajax({
|
return jQuery.ajax({
|
||||||
url: url,
|
url: url,
|
||||||
data: data,
|
data: data,
|
||||||
@ -630,6 +629,7 @@ jQuery.extend({
|
|||||||
// Allow custom headers/mimetypes
|
// Allow custom headers/mimetypes
|
||||||
if( s.beforeSend )
|
if( s.beforeSend )
|
||||||
s.beforeSend(xml);
|
s.beforeSend(xml);
|
||||||
|
|
||||||
if ( s.global )
|
if ( s.global )
|
||||||
jQuery.event.trigger("ajaxSend", [xml, s]);
|
jQuery.event.trigger("ajaxSend", [xml, s]);
|
||||||
|
|
||||||
@ -663,9 +663,8 @@ jQuery.extend({
|
|||||||
// Fire the global callback
|
// Fire the global callback
|
||||||
if( s.global )
|
if( s.global )
|
||||||
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
|
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
|
||||||
} else {
|
} else
|
||||||
jQuery.handleError(s, xml, status);
|
jQuery.handleError(s, xml, status);
|
||||||
}
|
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
status = "error";
|
status = "error";
|
||||||
jQuery.handleError(s, xml, status, e);
|
jQuery.handleError(s, xml, status, e);
|
||||||
@ -680,7 +679,8 @@ jQuery.extend({
|
|||||||
jQuery.event.trigger( "ajaxStop" );
|
jQuery.event.trigger( "ajaxStop" );
|
||||||
|
|
||||||
// Process result
|
// Process result
|
||||||
if ( s.complete ) s.complete(xml, status);
|
if ( s.complete )
|
||||||
|
s.complete(xml, status);
|
||||||
|
|
||||||
// Stop memory leaks
|
// Stop memory leaks
|
||||||
xml.onreadystatechange = function(){};
|
xml.onreadystatechange = function(){};
|
||||||
@ -766,15 +766,16 @@ jQuery.extend({
|
|||||||
data = type == "xml" || data ? r.responseXML : r.responseText;
|
data = type == "xml" || data ? r.responseXML : r.responseText;
|
||||||
|
|
||||||
// If the type is "script", eval it in global context
|
// If the type is "script", eval it in global context
|
||||||
if ( type == "script" ) {
|
if ( type == "script" )
|
||||||
jQuery.globalEval( data );
|
jQuery.globalEval( data );
|
||||||
}
|
|
||||||
|
|
||||||
// Get the JavaScript object, if JSON is used.
|
// Get the JavaScript object, if JSON is used.
|
||||||
if ( type == "json" ) eval( "data = " + data );
|
if ( type == "json" )
|
||||||
|
eval( "data = " + data );
|
||||||
|
|
||||||
// evaluate scripts within html
|
// evaluate scripts within html
|
||||||
if ( type == "html" ) jQuery("<div>").html(data).evalScripts();
|
if ( type == "html" )
|
||||||
|
jQuery("<div>").html(data).evalScripts();
|
||||||
|
|
||||||
return data;
|
return data;
|
||||||
},
|
},
|
||||||
@ -786,25 +787,21 @@ jQuery.extend({
|
|||||||
|
|
||||||
// If an array was passed in, assume that it is an array
|
// If an array was passed in, assume that it is an array
|
||||||
// of form elements
|
// of form elements
|
||||||
if ( a.constructor == Array || a.jquery ) {
|
if ( a.constructor == Array || a.jquery )
|
||||||
// Serialize the form elements
|
// Serialize the form elements
|
||||||
for ( var i = 0; i < a.length; i++ )
|
for ( var i = 0; i < a.length; i++ )
|
||||||
s.push( a[i].name + "=" + encodeURIComponent( a[i].value ) );
|
s.push( a[i].name + "=" + encodeURIComponent( a[i].value ) );
|
||||||
|
|
||||||
// Otherwise, assume that it's an object of key/value pairs
|
// Otherwise, assume that it's an object of key/value pairs
|
||||||
} else {
|
else
|
||||||
// Serialize the key/values
|
// Serialize the key/values
|
||||||
for ( var j in a ) {
|
for ( var j in a )
|
||||||
// If the value is an array then the key names need to be repeated
|
// If the value is an array then the key names need to be repeated
|
||||||
if( a[j].constructor == Array ) {
|
if ( a[j].constructor == Array )
|
||||||
for (var k = 0; k < a[j].length; k++) {
|
for ( var k = 0; k < a[j].length; k++ )
|
||||||
s.push( j + "=" + encodeURIComponent( a[j][k] ) );
|
s.push( j + "=" + encodeURIComponent( a[j][k] ) );
|
||||||
}
|
else
|
||||||
} else {
|
|
||||||
s.push( j + "=" + encodeURIComponent( a[j] ) );
|
s.push( j + "=" + encodeURIComponent( a[j] ) );
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Return the resulting serialization
|
// Return the resulting serialization
|
||||||
return s.join("&");
|
return s.join("&");
|
||||||
|
Loading…
Reference in New Issue
Block a user