Skip to content

Commit 7a246b7

Browse files
authored
Missing event
1 parent bb61e80 commit 7a246b7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/radar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ function radar_visualization(config) {
481481
.append("g")
482482
.attr("class", "blip")
483483
.attr("transform", function(d, i) { return legend_transform(d.quadrant, d.ring, config.legend_column_width, i); })
484-
.on("mouseover", function(d) { showBubble(d); highlightLegendItem(d); })
485-
.on("mouseout", function(d) { hideBubble(d); unhighlightLegendItem(d); });
484+
.on("mouseover", function(event, d) { showBubble(d); highlightLegendItem(d); })
485+
.on("mouseout", function(event, d) { hideBubble(d); unhighlightLegendItem(d); });
486486

487487
// configure each blip
488488
blips.each(function(d) {

docs/release/radar-0.12.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,8 @@ function radar_visualization(config) {
481481
.append("g")
482482
.attr("class", "blip")
483483
.attr("transform", function(d, i) { return legend_transform(d.quadrant, d.ring, config.legend_column_width, i); })
484-
.on("mouseover", function(d) { showBubble(d); highlightLegendItem(d); })
485-
.on("mouseout", function(d) { hideBubble(d); unhighlightLegendItem(d); });
484+
.on("mouseover", function(event, d) { showBubble(d); highlightLegendItem(d); })
485+
.on("mouseout", function(event, d) { hideBubble(d); unhighlightLegendItem(d); });
486486

487487
// configure each blip
488488
blips.each(function(d) {

0 commit comments

Comments
 (0)