Skip to content

Commit 59db6aa

Browse files
committed
1 parent db8d305 commit 59db6aa

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

d3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@
492492
return n.querySelector(s);
493493
}, d3_selectAll = function(s, n) {
494494
return n.querySelectorAll(s);
495-
}, d3_selectMatcher = d3_documentElement[d3_vendorSymbol(d3_documentElement, "matchesSelector")], d3_selectMatches = function(n, s) {
495+
}, d3_selectMatcher = d3_documentElement.matches || d3_documentElement[d3_vendorSymbol(d3_documentElement, "matchesSelector")], d3_selectMatches = function(n, s) {
496496
return d3_selectMatcher.call(n, s);
497497
};
498498
if (typeof Sizzle === "function") {

0 commit comments

Comments
 (0)