Commit 52ba1080 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Use const for c3-arc

parent 9e4f70a6
...@@ -1073,7 +1073,7 @@ ...@@ -1073,7 +1073,7 @@
} }
function unexpandArc(id) { function unexpandArc(id) {
var target = svg.selectAll('.' + CLASS.chartArc + selectorTarget(id)); var target = svg.selectAll('.' + CLASS.chartArc + selectorTarget(id));
target.selectAll('path.c3-arc') target.selectAll('path.' + CLASS.arc)
.transition().duration(50) .transition().duration(50)
.attr("d", svgArc); .attr("d", svgArc);
svg.selectAll('.' + CLASS.arc) svg.selectAll('.' + CLASS.arc)
......
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