gitlabhq/app/views/projects/tree.js.haml
2011-10-09 00:36:38 +03:00

6 lines
311 B
Plaintext

: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);
});