From c06d8ec4ed15aeaf6bc2be27542972d73b9c0680 Mon Sep 17 00:00:00 2001 From: Dan Vanderkam Date: Wed, 18 Jul 2012 10:20:18 -0500 Subject: [PATCH] clean up --- dygraph-canvas.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dygraph-canvas.js b/dygraph-canvas.js index f8167a7..720ab80 100644 --- a/dygraph-canvas.js +++ b/dygraph-canvas.js @@ -307,7 +307,6 @@ DygraphCanvasRenderer.prototype._drawSeries = function( ctx.lineWidth = strokeWidth; for (var i = iter.start_; i < iter.end_; i++) { - // while (iter.hasNext) { point = iter.array_[i]; if (iter.predicate_) { while (i < iter.end_ && !iter.predicate_(iter.array_, i)) { @@ -327,18 +326,10 @@ DygraphCanvasRenderer.prototype._drawSeries = function( } else { isIsolated = false; if (drawGapPoints || !prevCanvasX) { - // nextCanvasY = iter.hasNext ? iter.peek.canvasy : null; - // var next_i = i + 1; - // while (next_i < iter.end_ && (!iter.predicate_ || !iter.predicate_(iter.array_, next_i))) { - // next_i++; - // } iter.nextIdx_ = i; var peek = iter.next(); nextCanvasY = iter.hasNext ? iter.peek.canvasy : null; - // nextCanvasY = next_i < iter.end_ ? iter.array_[next_i].canvasy : null; - // TODO: we calculate isNullOrNaN for this point, and the next, and then, - // when we iterate, test for isNullOrNaN again. Why bother? var isNextCanvasYNullOrNaN = nextCanvasY === null || nextCanvasY != nextCanvasY; isIsolated = (!prevCanvasX && isNextCanvasYNullOrNaN); -- 2.7.4