From 67dc02f23db70391220dc0336f2110645a34a9d2 Mon Sep 17 00:00:00 2001 From: Ammar Yasir Date: Fri, 12 Aug 2011 20:06:27 +0530 Subject: [PATCH] Fixed: false timestamp error --- js/tbl_zoom_plot.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/tbl_zoom_plot.js b/js/tbl_zoom_plot.js index 3f6be1c55c..e82b145c4a 100644 --- a/js/tbl_zoom_plot.js +++ b/js/tbl_zoom_plot.js @@ -479,7 +479,6 @@ $(document).ready(function() { if (xType != 'text' && yType != 'text') { $.each(data,function(key,value) { var xVal = (xType == 'numeric') ? value[xLabel] : getTimeStamp(value[xLabel],$('#types_0').val()); - alert(xVal); var yVal = (yType == 'numeric') ? value[yLabel] : getTimeStamp(value[yLabel],$('#types_1').val()); series[0].data.push({ name: value[dataLabel], x: xVal, y: yVal, marker: {fillColor: colorCodes[it % 8]} , id: it } ); xCord.push(value[xLabel]);