From 123967cac47e022dfbf897efa6fec7b302f5da9c Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Wed, 23 Dec 2015 14:25:05 -0600 Subject: [PATCH] Vertically shrink "the graph" --- assets/js/site.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/site.js b/assets/js/site.js index 2d44783..e219126 100644 --- a/assets/js/site.js +++ b/assets/js/site.js @@ -271,7 +271,7 @@ $(document).ready(function() { socket.on('historyGraph', function(rawData) { displayedGraphData = rawData; - $('#big-graph').css('height', '500px'); + $('#big-graph').css('height', '400px'); historyPlot = $.plot('#big-graph', convertGraphData(rawData), bigChartOptions);