Commit b7bf9b41 authored by Mike Greiling's avatar Mike Greiling

refactor Network class

parent 34742710
...@@ -2,20 +2,18 @@ ...@@ -2,20 +2,18 @@
import BranchGraph from './branch_graph'; import BranchGraph from './branch_graph';
(function() { export default (function() {
this.Network = (function() { function Network(opts) {
function Network(opts) { var vph;
var vph; $("#filter_ref").click(function() {
$("#filter_ref").click(function() { return $(this).closest('form').submit();
return $(this).closest('form').submit(); });
}); this.branch_graph = new BranchGraph($(".network-graph"), opts);
this.branch_graph = new BranchGraph($(".network-graph"), opts); vph = $(window).height() - 250;
vph = $(window).height() - 250; $('.network-graph').css({
$('.network-graph').css({ 'height': vph + 'px'
'height': vph + 'px' });
}); }
}
return Network; return Network;
})(); })();
}).call(window);
/* eslint-disable func-names, space-before-function-paren, prefer-arrow-callback, quotes, no-var, vars-on-top, camelcase, comma-dangle, consistent-return, max-len */ /* eslint-disable func-names, space-before-function-paren, prefer-arrow-callback, quotes, no-var, vars-on-top, camelcase, comma-dangle, consistent-return, max-len */
/* global Network */
/* global ShortcutsNetwork */ /* global ShortcutsNetwork */
require('./network'); import Network from './network';
(function() { (function() {
$(function() { $(function() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment