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

tree.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bde543f0b8618d5a8cdbfca1dd0cb24a1600651e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * Tree slider for code browse
 *
 */
var Tree = { 
  init: 
    function() { 
      (new Image).src = "/assets/ajax-loader-tree.gif";

      $('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live("click", function() {
        history.pushState({ path: this.path }, '', this.href)
        $("#tree-content-holder").hide("slide", { direction: "left" }, 150)
      })

      $("#tree-slider tr.tree-item").live('click', function(e){
        if(e.target.nodeName != "A") {
          link = $(this).find("td.tree-item-file-name a");
          link.trigger("click");
        }
      });

      $('#tree-slider td.tree-item-file-name a, #tree-breadcrumbs a').live({ 
        "ajax:beforeSend": function() { $('h2.icon').addClass("loading") },
        "ajax:complete": function() { $('h2.icon').removeClass("loading")} 
      });
    }
}