Touched up the code a little bit, saving some bytes.
This commit is contained in:
parent
8507faea6e
commit
2bd21fe3b3
|
@ -77,7 +77,7 @@ jQuery.fn.extend({
|
||||||
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.attr("innerHTML", 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
|
||||||
|
@ -121,7 +121,7 @@ jQuery.fn.extend({
|
||||||
* @cat Ajax
|
* @cat Ajax
|
||||||
*/
|
*/
|
||||||
evalScripts: function() {
|
evalScripts: function() {
|
||||||
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
|
||||||
|
@ -590,7 +590,7 @@ jQuery.extend({
|
||||||
// if data available
|
// if data available
|
||||||
if ( s.data ) {
|
if ( s.data ) {
|
||||||
// convert data if not already a string
|
// convert data if not already a string
|
||||||
if (s.processData && typeof s.data != 'string')
|
if (s.processData && typeof s.data != "string")
|
||||||
s.data = jQuery.param(s.data);
|
s.data = jQuery.param(s.data);
|
||||||
// append data to url for get requests
|
// append data to url for get requests
|
||||||
if( s.type.toLowerCase() == "get" )
|
if( s.type.toLowerCase() == "get" )
|
||||||
|
|
Loading…
Reference in a new issue