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

network_bundle.js « network « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a7422a77553bf88e625cc29249aa4b9d2cf0afc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

/*= require_tree . */

(function() {
  $(function() {
    var network_graph;
    network_graph = new Network({
      url: $(".network-graph").attr('data-url'),
      commit_url: $(".network-graph").attr('data-commit-url'),
      ref: $(".network-graph").attr('data-ref'),
      commit_id: $(".network-graph").attr('data-commit-id')
    });
    return new ShortcutsNetwork(network_graph.branch_graph);
  });

}).call(this);