Skip to content

Commit

Permalink
Touched up the code a little bit, saving some bytes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeresig committed Jan 14, 2007
1 parent 8507fae commit 2bd21fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ajax/ajax.js
Expand Up @@ -77,7 +77,7 @@ jQuery.fn.extend({
complete: function(res, status){
if ( status == "success" || !ifModified && status == "notmodified" )
// 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
.evalScripts()
// Execute callback
Expand Down Expand Up @@ -121,7 +121,7 @@ jQuery.fn.extend({
* @cat Ajax
*/
evalScripts: function() {
return this.find('script').each(function(){
return this.find("script").each(function(){
if ( this.src )
jQuery.getScript( this.src );
else
Expand Down Expand Up @@ -590,7 +590,7 @@ jQuery.extend({
// if data available
if ( s.data ) {
// 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);
// append data to url for get requests
if( s.type.toLowerCase() == "get" )
Expand Down

0 comments on commit 2bd21fe

Please sign in to comment.