Skip to content

Commit 8ed847a

Browse files
committed
fix syntax
1 parent 16f4554 commit 8ed847a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/fx/hover.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ function createHoverText(hoverData, opts, gd) {
10951095
lxRight = Math.max(winningPoint.x0, winningPoint.x1);
10961096
lxLeft = Math.min(winningPoint.x0, winningPoint.x1);
10971097
} else {
1098-
lxRight = Math.max.apply(null, hoverData.map(function(c) { return Math.max(c.x0, c.x1); }) );
1098+
lxRight = Math.max.apply(null, hoverData.map(function(c) { return Math.max(c.x0, c.x1); }));
10991099
lxLeft = Math.min.apply(null, hoverData.map(function(c) { return Math.min(c.x0, c.x1); }));
11001100
}
11011101
} else {

0 commit comments

Comments
 (0)