review/static/ui.js @ f541cc7321a9

web: fix the host/port options
author Steve Losh <steve@stevelosh.com>
date Sat, 12 Jun 2010 00:33:05 -0400
parents 776a8c6e70a0
children 17ad8036c6e2
$(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;
    });

});