review/web_media/ui.js @ ebc5f7c7a6b7

Add cancel links to comment/signoff forms to hide them.
author Steve Losh <steve@stevelosh.com>
date Sun, 02 May 2010 16:28:22 -0400
parents c5debb475273
children (none)
$(function() {
    
    $("a.fold-file").toggle(function(event) {
        $(event.target).closest("div.file-review").find("div.file-review-contents").slideUp("fast");
        $(event.target).html("&nbsp;&nbsp;&nbsp;&larr;").addClass("unfold-file").removeClass("fold-file");
        return false;
    },
    function(event) {
        $(event.target).closest("div.file-review").find("div.file-review-contents").slideDown("fast");
        $(event.target).html("&nbsp;&nbsp;&nbsp;&darr;").addClass("fold-file").removeClass("unfold-file");
        return false;
    });

});