Skip to content

Commit 48c6dfb

Browse files
committed
rm unnecessary hasCartesian check
1 parent c4973f5 commit 48c6dfb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/plots/cartesian/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,8 @@ exports.plot = function(gd) {
100100
}
101101

102102
// finally do all error bars at once
103-
if(fullLayout._hasCartesian) {
104-
ErrorBars.plot(gd, subplotInfo, cdError);
105-
Lib.markTime('done ErrorBars');
106-
}
103+
ErrorBars.plot(gd, subplotInfo, cdError);
104+
Lib.markTime('done ErrorBars');
107105
}
108106

109107
// now draw stuff not on subplots (ie, only pies at the moment)

0 commit comments

Comments
 (0)