There was an error while loading. Please reload this page.
1 parent d60aad0 commit b2e3290Copy full SHA for b2e3290
1 file changed
js/dico/d3-bubbles.js
@@ -78,8 +78,8 @@ Bubbles.prototype.setData = function(data){
78
.attr("cy", function (d) { return d.y; })
79
.attr("r", function (d) { return d.radius; })
80
.style("fill", function (d) { return that.fill(d[that.colorFieldId]); })
81
- .on("mouseover", showPopover)
82
- .on("mouseout", removePopovers);
+ .on("mouseenter", showPopover)
+ .on("mouseleave", removePopovers);
83
84
this.nodes
85
.attr('data-mid', function (d) { return d.id;});
0 commit comments