From 52ca2280be28ad4d693439f3f1c97649b6431f51 Mon Sep 17 00:00:00 2001 From: Adam Vartanian Date: Wed, 11 Apr 2012 11:12:28 -0400 Subject: [PATCH] Add comments --- dygraph-layout.js | 1 + 1 file changed, 1 insertion(+) diff --git a/dygraph-layout.js b/dygraph-layout.js index 8147e48..58f169b 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -361,6 +361,7 @@ DygraphLayout.prototype.removeAllDatasets = function() { */ DygraphLayout.prototype.unstackPointAtIndex = function(idx) { var point = this.points[idx]; + // If the point is missing, no unstacking is necessary if (!point.yval) { return point; } -- 2.7.4