20 lines
421 B
JavaScript
20 lines
421 B
JavaScript
|
(function() {
|
||
|
this.Network = (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;
|
||
|
|
||
|
})();
|
||
|
|
||
|
}).call(this);
|