Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tree.js.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60cbd1991658fb4dc6f066f832036943b9e2e887 (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);
  });