review/web_media/comments.js @ 001f5ecfd9bc

Merge the webui skipped line counts -- too important to leave in the branch.
author Steve Losh <steve@stevelosh.com>
date Wed, 21 Oct 2009 19:58:13 -0400
parents c5932df8f4a8
children e2ddb8631463
$(function() {
    
    $("form").hide();
    
    $("p.comment-activate a").click(function() {
        $(event.target).hide();
        $(event.target).closest("div").children("form").fadeIn("fast");
        return false;
    });

});