Missing semicolon
authorPetr Shevtsov <petr.shevtsov@gmail.com>
Wed, 30 Apr 2014 17:24:30 +0000 (21:24 +0400)
committerPetr Shevtsov <petr.shevtsov@gmail.com>
Wed, 30 Apr 2014 17:24:30 +0000 (21:24 +0400)
plugins/legend.js

index b73e939..90803f6 100644 (file)
@@ -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_);