Fix visibility

This commit is contained in:
Cryptkeeper 2015-12-18 19:05:43 -06:00
parent 9dd81bcc66
commit 438a060823
2 changed files with 2 additions and 4 deletions

@ -184,10 +184,6 @@ h3 {
margin: 15px auto 0 auto;
}
#big-graph {
height: 500px;
}
#big-graph-checkboxes > table {
width: 100%;
}

@ -265,6 +265,8 @@ $(document).ready(function() {
socket.on('historyGraph', function(rawData) {
displayedGraphData = rawData;
$('#big-graph').css('height', '500px');
historyPlot = $.plot('#big-graph', convertGraphData(rawData), bigChartOptions);
$('#big-graph').bind('plothover', handlePlotHover);