review/static/ui.js @ a88dd00c4079

web: add diff line backgrounds and show file comment counts
author Steve Losh <steve@stevelosh.com>
date Mon, 14 Jun 2010 19:28:37 -0400
parents 0d78b56ae9aa
children 5668dd3e0a95
$(function() {
    $("a.fold").toggle(function(event) {
        $(event.target).closest(".file").find(".file-review-contents").slideDown("fast", function() {
            $(event.target).closest("h3").find(".status").html("&darr;");
        });
        return false;
    },
    function(event) {
        $(event.target).closest(".file")
                        .find(".file-review-contents")
                        .slideUp("fast", function () {
            $(event.target).closest("h3").find(".status").html("&rarr;");
        });
        return false;
    });
    $(".submit").live('click', function() {
        $(this).closest("form").submit();
    });
});