missing semi-colon

This commit is contained in:
Brandon Aaron 2007-07-21 01:53:38 +00:00
parent 24463a04ce
commit b965c98ff1

View file

@ -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] );
}