gitlab-org--gitlab-foss/app/views/projects/tree.js.haml

6 lines
295 B
Plaintext
Raw Normal View History

2011-10-08 21:36:38 +00:00
: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}))}");
2011-10-08 21:36:38 +00:00
$("#tree-holder table").show("slide", { direction: "right" }, 150);
});