Skip to content

Commit 0cdc669

Browse files
committed
Fix indentation.
1 parent 84fbe09 commit 0cdc669

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plots/cartesian/set_convert.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -452,10 +452,10 @@ module.exports = function setConvert(ax, fullLayout) {
452452
var r1 = ax.r2l(ax.range[1]);
453453

454454
if(r0 < r1) {
455-
return r0 <= coord && coord <= r1;
455+
return r0 <= coord && coord <= r1;
456456
} else {
457-
// Reversed axis case.
458-
return r1 <= coord && coord <= r0;
457+
// Reversed axis case.
458+
return r1 <= coord && coord <= r0;
459459
}
460460
};
461461

0 commit comments

Comments
 (0)