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

network.js « network « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8898e7ace4322647c8017909ff818bef581a38e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* eslint-disable */
(function() {
  this.Network = (function() {
    function Network(opts) {
      var vph;
      $("#filter_ref").click(function() {
        return $(this).closest('form').submit();
      });
      this.branch_graph = new BranchGraph($(".network-graph"), opts);
      vph = $(window).height() - 250;
      $('.network-graph').css({
        'height': vph + 'px'
      });
    }

    return Network;

  })();

}).call(this);