Commit built files

parent 48e1b200
...@@ -8694,6 +8694,7 @@ ...@@ -8694,6 +8694,7 @@
case 'top': case 'top':
case 'bottom': case 'bottom':
rectPositionFn = function(rect, d) { rectPositionFn = function(rect, d) {
if(!rect) return;
rect.x = scale1(d); rect.x = scale1(d);
rect.y = 0; rect.y = 0;
} }
...@@ -8701,6 +8702,7 @@ ...@@ -8701,6 +8702,7 @@
case 'left': case 'left':
case 'right': case 'right':
rectPositionFn = function(rect, d) { rectPositionFn = function(rect, d) {
if(!rect) return;
rect.x = 0; rect.x = 0;
rect.y = scale1(d); rect.y = scale1(d);
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment