Commit 9f051237 authored by Masayuki Tanaka's avatar Masayuki Tanaka

Merge pull request #1273 from alycklama/master

Fixed bug with tooltip names not being processed with $$.getTargetSel…
parents 782023e1 e3fcf659
......@@ -3843,7 +3843,7 @@
name = nameFormat(d[i].name, d[i].ratio, d[i].id, d[i].index);
bgcolor = $$.levelColor ? $$.levelColor(d[i].value) : color(d[i].id);
text += "<tr class='" + CLASS.tooltipName + "-" + d[i].id + "'>";
text += "<tr class='" + CLASS.tooltipName + $$.getTargetSelectorSuffix(d[i].id) + "'>";
text += "<td class='name'><span style='background-color:" + bgcolor + "'></span>" + name + "</td>";
text += "<td class='value'>" + value + "</td>";
text += "</tr>";
......
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