# HG changeset patch # User Steve Losh # Date 1256250431 14400 # Node ID e2ddb8631463a22b51b2cefcf6c415743a95ef35 # Parent 1cc8e18b1b43ca823159a7cce01d5f3f7fef6da5 Fix the event not defined bug. diff -r 1cc8e18b1b43 -r e2ddb8631463 review/web_media/comments.js --- 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;