From 1849e8a9c68e4d708cb30053db86ee0f32128c8f Mon Sep 17 00:00:00 2001 From: DL6ER Date: Thu, 19 Dec 2019 15:45:37 +0000 Subject: [PATCH] Remove unused variable. Signed-off-by: DL6ER --- scripts/pi-hole/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/pi-hole/js/index.js b/scripts/pi-hole/js/index.js index a65953fa..969e6cdc 100644 --- a/scripts/pi-hole/js/index.js +++ b/scripts/pi-hole/js/index.js @@ -7,8 +7,8 @@ // Define global variables /* global Chart:false, updateSessionTimer:false */ -var timeLineChart, forwardDestinationChart; -var queryTypePieChart, forwardDestinationPieChart, clientsChart; +var timeLineChart, clientsChart; +var queryTypePieChart, forwardDestinationPieChart; function padNumber(num) { return ("00" + num).substr(-2,2);