mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
10 lines
260 B
CoffeeScript
10 lines
260 B
CoffeeScript
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')
|