From 65cdd8b97fdda27834912b7ef643c32cb78c7f08 Mon Sep 17 00:00:00 2001 From: armored-dragon Date: Mon, 17 Mar 2025 11:54:39 -0500 Subject: [PATCH] Removed extra code no longer required. --- domain-server/resources/web/stats/js/stats.js | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/domain-server/resources/web/stats/js/stats.js b/domain-server/resources/web/stats/js/stats.js index d0cc5d506a..cf7fe599c7 100644 --- a/domain-server/resources/web/stats/js/stats.js +++ b/domain-server/resources/web/stats/js/stats.js @@ -1,6 +1,5 @@ $(document).ready(function(){ - var currentHighchart; // setup a function to grab the nodeStats function getNodeStats() { @@ -22,22 +21,11 @@ $(document).ready(function(){ $('.jh-value span').each(function(val){ console.log(val); if (!isNaN($(this).text())) { - // this looks like a number - give it the clickable class so we can get graphs for it + // this looks like a number - give it the clickable class $(this).addClass('graphable-stat'); } }); - if (currentHighchart) { - // get the current time to set with the point - var x = (new Date()).getTime(); - - // get the last value using underscore-keypath - var y = Number(_(json).valueForKeyPath(graphKeypath)); - - // start shifting the chart once we hit 20 data points - var shift = currentHighchart.series[0].data.length > 20; - currentHighchart.series[0].addPoint([x, y], true, shift); - } }).fail(function(data) { $('#stats-container th').each(function(){ $(this).addClass('stale');