review/web_media/comments.js @ e2ddb8631463 webui

Fix the event not defined bug.
author Steve Losh <steve@stevelosh.com>
date Thu, 22 Oct 2009 18:27:11 -0400
parents c5932df8f4a8
children 2e65351af702
$(function() {
    
    $("form").hide();
    
    $("p.comment-activate a").click(function(event) {
        $(event.target).hide();
        $(event.target).closest("div").children("form").fadeIn("fast");
        return false;
    });

});