Browse Source

Use const for c3-arc

pull/264/head
Masayuki Tanaka 11 years ago
parent
commit
52ba108049
  1. 2
      c3.js

2
c3.js

@ -1073,7 +1073,7 @@
}
function unexpandArc(id) {
var target = svg.selectAll('.' + CLASS.chartArc + selectorTarget(id));
target.selectAll('path.c3-arc')
target.selectAll('path.' + CLASS.arc)
.transition().duration(50)
.attr("d", svgArc);
svg.selectAll('.' + CLASS.arc)

Loading…
Cancel
Save