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 7d83a0e..645caf7 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] );
                        }