Fix the event not defined bug.
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Thu, 22 Oct 2009 18:27:11 -0400 | 
    
    
        | parents | 1cc8e18b1b43 | 
    
        | children | b599ca22418d
2e65351af702 | 
    
        | branches/tags | webui | 
    
        | files | review/web_media/comments.js | 
Changes
    
--- a/review/web_media/comments.js	Wed Oct 21 19:57:17 2009 -0400
+++ b/review/web_media/comments.js	Thu Oct 22 18:27:11 2009 -0400
@@ -2,7 +2,7 @@
     
     $("form").hide();
     
-    $("p.comment-activate a").click(function() {
+    $("p.comment-activate a").click(function(event) {
         $(event.target).hide();
         $(event.target).closest("div").children("form").fadeIn("fast");
         return false;