From: Joseph Rossi Date: Mon, 16 Nov 2015 21:00:41 +0000 (-0500) Subject: PR Comment: Removing checks for undefined and null. They aren't possible X-Git-Tag: v2.0.0~31^2 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=0b90566b014a3bb4bd220860beb03e9e41a86ca1;p=dygraphs.git PR Comment: Removing checks for undefined and null. They aren't possible --- diff --git a/src/dygraph.js b/src/dygraph.js index ee39383..41e5cc1 100644 --- a/src/dygraph.js +++ b/src/dygraph.js @@ -1815,7 +1815,7 @@ Dygraph.prototype.updateSelection_ = function(opt_animFraction) { ctx.save(); for (i = 0; i < this.selPoints_.length; i++) { var pt = this.selPoints_[i]; - if (isNaN(pt.canvasy) || pt.canvasy === null || pt.canvasy === undefined) continue; + if (isNaN(pt.canvasy)) continue; var circleSize = this.getNumericOption('highlightCircleSize', pt.name); var callback = this.getFunctionOption("drawHighlightPointCallback", pt.name); diff --git a/src/plugins/legend.js b/src/plugins/legend.js index 9644576..96e68f4 100644 --- a/src/plugins/legend.js +++ b/src/plugins/legend.js @@ -268,7 +268,7 @@ Legend.generateLegendHTML = function(g, x, sel_points, oneEmWidth, row) { var seriesData = labelToSeries[pt.name]; seriesData.y = pt.yval; - if ((pt.yval === 0 && !showZeros) || isNaN(pt.canvasy) || pt.canvasy === null || pt.canvasy === undefined) { + if ((pt.yval === 0 && !showZeros) || isNaN(pt.canvasy)) { seriesData.isVisible = false; continue; }