summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/network/network.js
blob: 226d63f05c487750b9491b5575b0ebea8a6d731e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* eslint-disable func-names, no-var, prefer-template */

import $ from 'jquery';
import BranchGraph from '../../../network/branch_graph';

export default (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;
})();