From e3a2c8d5b0295dccfc93614709b8a0e09c8c2319 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Sun, 20 Nov 2016 14:09:38 +0100 Subject: [PATCH] Added a missing semicolon + adjusted wording to comply with updated summary texts --- js/pihole/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/pihole/index.js b/js/pihole/index.js index 92909f3a..4aa84d08 100644 --- a/js/pihole/index.js +++ b/js/pihole/index.js @@ -5,7 +5,7 @@ Number.prototype.pad = function(size) { var s = String(this); while (s.length < (size || 2)) {s = "0" + s;} return s; -} +}; $(document).ready(function() { @@ -34,7 +34,7 @@ $(document).ready(function() { labels: [], datasets: [ { - label: "All Queries", + label: "Total DNS Queries", fill: true, backgroundColor: "rgba(220,220,220,0.5)", borderColor: "rgba(0, 166, 90,.8)", @@ -46,7 +46,7 @@ $(document).ready(function() { cubicInterpolationMode: 'monotone' }, { - label: "Ad Queries", + label: "Blocked DNS Queries", fill: true, backgroundColor: "rgba(0,192,239,0.5)", borderColor: "rgba(0,192,239,1)",