Don't use global selector in uiPopover (re: #7445)

This commit is contained in:
Quincy Morgan
2020-03-29 10:43:05 -07:00
parent a1a398650f
commit 89ed2b4d0d
+1 -1
View File
@@ -76,7 +76,7 @@ export function uiPopover(klass) {
};
popover.isShown = function() {
var popoverSelection = d3_select('.popover-' + _id);
var popoverSelection = _anchorSelection.select('.popover-' + _id);
return !popoverSelection.empty() && popoverSelection.classed('in');
};