summaryrefslogtreecommitdiff
path: root/app/views/projects/tree.js.haml
blob: ba5d53c16a25562284c854b3de769bb048a75a77 (plain)
1
2
3
4
5
:plain
  $("#tree-holder table").hide("slide", { direction: "left" }, 150, function(){
    $("#tree-holder").html("#{escape_javascript(render(partial: "tree", locals: {repo: @repo, commit: @commit, tree: @tree}))}");
    $("#tree-holder table").show("slide", { direction: "right" }, 150);
  });