projects
/
dygraphs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
250bb62
)
Missing semicolon
author
Petr Shevtsov
<petr.shevtsov@gmail.com>
Wed, 30 Apr 2014 17:24:30 +0000
(21:24 +0400)
committer
Petr Shevtsov
<petr.shevtsov@gmail.com>
Wed, 30 Apr 2014 17:24:30 +0000
(21:24 +0400)
plugins/legend.js
patch
|
blob
|
blame
|
history
diff --git
a/plugins/legend.js
b/plugins/legend.js
index
b73e939
..
90803f6
100644
(file)
--- 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_);