We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37c592e commit f804daeCopy full SHA for f804dae
src/traces/scatter3d/convert.js
@@ -136,14 +136,14 @@ function calculateErrorParams(errors) {
136
function parseAlignmentX(a) {
137
if(a === null || a === undefined) return 0;
138
139
- return (a.indexOf('left') > -1) ? -1 :
+ return (a.indexOf('left') > -1) ? -1 :
140
(a.indexOf('right') > -1) ? 1 : 0;
141
}
142
143
function parseAlignmentY(a) {
144
145
146
- return (a.indexOf('top') > -1) ? -1 :
+ return (a.indexOf('top') > -1) ? -1 :
147
(a.indexOf('bottom') > -1) ? 1 : 0;
148
149
0 commit comments