From 945e2148be77d6ed6e515531ad33e033538b7b88 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Sat, 16 May 2015 01:45:21 -0400 Subject: [PATCH] Don't insert current time into graph --- static/js/scoreboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/scoreboard.js b/static/js/scoreboard.js index 17449590..ce4bac91 100644 --- a/static/js/scoreboard.js +++ b/static/js/scoreboard.js @@ -62,10 +62,10 @@ function scoregraph () { team_scores = cumulativesum(team_scores) times.unshift("x"+i) - times.push( Math.round(new Date().getTime()/1000) ) + // times.push( Math.round(new Date().getTime()/1000) ) team_scores.unshift(teams[i]) - team_scores.push( team_scores[team_scores.length-1] ) + // team_scores.push( team_scores[team_scores.length-1] ) xs_data[teams[i]] = "x"+i