Skip to content

Commit 51f6bcc

Browse files
committed
Merge branch 'foolip-matches' into 3.4.9
2 parents 2c6e7ec + 6063308 commit 51f6bcc

3 files changed

Lines changed: 3 additions & 3 deletions

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)