From: Brandon Aaron Date: Sat, 21 Jul 2007 01:53:38 +0000 (+0000) Subject: missing semi-colon X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=b965c98ff1cf3038164c627d74df40f68bcc0a82;hp=24463a04ce5612f4007263f9af0d1e4d7568ed9a;p=jquery.git missing semi-colon --- diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 7d83a0e..645caf7 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -77,7 +77,7 @@ jQuery.fn.extend({ complete: function(res, status){ // If successful, inject the HTML into all the matched elements if ( status == "success" || !ifModified && status == "notmodified" ) - self.html(res.responseText) + self.html(res.responseText); self.each( callback, [res.responseText, status, res] ); }