]> source.dussan.org Git - jquery.git/commitdiff
missing semi-colon
authorBrandon Aaron <brandon.aaron@gmail.com>
Sat, 21 Jul 2007 01:53:38 +0000 (01:53 +0000)
committerBrandon Aaron <brandon.aaron@gmail.com>
Sat, 21 Jul 2007 01:53:38 +0000 (01:53 +0000)
src/ajax/ajax.js

index 7d83a0eb671c8fbb043ae695cb0cda251e99f1b8..645caf72e4ad2c4fa90145cf08267184ec2c6f18 100644 (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] );
                        }