From 096c919dd0c893bc4725a4a4fbc7a7d956887e84 Mon Sep 17 00:00:00 2001 From: Cryptkeeper Date: Wed, 6 Jan 2016 13:15:34 -0600 Subject: [PATCH] Disallow networks from graphing < 0 players --- assets/js/site.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/assets/js/site.js b/assets/js/site.js index e219126..5c21caa 100644 --- a/assets/js/site.js +++ b/assets/js/site.js @@ -19,7 +19,8 @@ var smallChartOptions = { font: { color: "#E3E3E3" }, - labelWidth: -10 + labelWidth: -10, + min: 0 }, grid: { hoverable: true, @@ -50,7 +51,8 @@ var bigChartOptions = { font: { color: "#E3E3E3" }, - labelWidth: -5 + labelWidth: -5, + min: 0 }, grid: { hoverable: true,