summaryrefslogtreecommitdiff
path: root/app/views/blob/show.js.haml
blob: 804107f42fa37ba9d16b5ca55bb38767a2c9965e (plain)
1
2
3
4
5
6
7
8
9
10
:plain
  // Load Files list
  $("#tree-holder").html("#{escape_javascript(render(partial: "blob", locals: {blob: @blob}))}");
  $("#tree-content-holder").show("slide", { direction: "right" }, 400);
  $('.project-refs-form #path').val("#{@path}");

  //  Load last commit log for each file in tree
  $('#tree-slider').waitForImages(function() {
    ajaxGet('#{@logs_path}');
  });