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

network.js.coffee « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f4ef07a50a7e10efbab544384eec31020d5f6922 (plain)
1
2
3
4
5
6
7
8
9
class @Network
  constructor: (opts) ->
    $("#filter_ref").click ->
      $(this).closest('form').submit()

    @branch_graph = new BranchGraph($(".network-graph"), opts)

    vph = $(window).height() - 250
    $('.network-graph').css 'height': (vph + 'px')