You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2019/12/02 05:04:45 UTC

[incubator-echarts] 01/01: fix es3 syntax error

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch fix-es3-syntax-error
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git

commit 257d51be84afddff3c0ba085b6c0805c108d360c
Author: pissang <bm...@gmail.com>
AuthorDate: Mon Dec 2 13:04:28 2019 +0800

    fix es3 syntax error
---
 src/component/axis/AxisBuilder.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/component/axis/AxisBuilder.js b/src/component/axis/AxisBuilder.js
index 7aca9a0..717fd52 100644
--- a/src/component/axis/AxisBuilder.js
+++ b/src/component/axis/AxisBuilder.js
@@ -664,7 +664,7 @@ function buildAxisMinorTicks(axisBuilder, axisModel, opt) {
 
     for (var i = 0; i < minorTicksCoords.length; i++) {
         var minorTicksEls = createTicks(
-            minorTicksCoords[i], axisBuilder._transform, tickEndCoord, minorTickLineStyle, 'minorticks_' + i,
+            minorTicksCoords[i], axisBuilder._transform, tickEndCoord, minorTickLineStyle, 'minorticks_' + i
         );
         for (let k = 0; k < minorTicksEls.length; k++) {
             axisBuilder.group.add(minorTicksEls[k]);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org