From a8cfb091dfb7e5147d6b336053e29af8ec11e394 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Thu, 15 Dec 2016 12:19:27 +0100 Subject: [PATCH] $(document).ready(function() { ... }); was included in in function updateTopLists(){ ... } --- js/pihole/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/pihole/index.js b/js/pihole/index.js index 746171a3..c0e2141b 100644 --- a/js/pihole/index.js +++ b/js/pihole/index.js @@ -210,8 +210,9 @@ function updateTopLists() { $("#domain-frequency .overlay").remove(); $("#ad-frequency .overlay").remove(); }); +} - $(document).ready(function() { +$(document).ready(function() { var isMobile = { Windows: function() { @@ -368,4 +369,3 @@ function updateTopLists() { updateTopClientsChart(); } }); -}