From bf5d26a5d349331ab3beba79702692711e9de17c Mon Sep 17 00:00:00 2001 From: Petr Shevtsov Date: Wed, 30 Apr 2014 21:24:30 +0400 Subject: [PATCH] Missing semicolon --- plugins/legend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/legend.js b/plugins/legend.js index b73e939..90803f6 100644 --- a/plugins/legend.js +++ b/plugins/legend.js @@ -143,7 +143,7 @@ legend.prototype.select = function(e) { // if legend floats to end of the plotting area, it flips to the other // side of the selection point if((leftLegend + labelsDivWidth + 1) > area.w) { - leftLegend = leftLegend - 2*20 - labelsDivWidth - (yAxisLabelWidth - area.x) + leftLegend = leftLegend - 2*20 - labelsDivWidth - (yAxisLabelWidth - area.x); } e.dygraph.graphDiv.appendChild(this.legend_div_); -- 2.7.4