Skip to content

Commit

Permalink
fixes IE11 matchSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
Mykyta Mazurenko committed Jan 25, 2017
1 parent 8d1ba11 commit e63434d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/x-tag-core-with-shadowdom.js
Original file line number Diff line number Diff line change
Expand Up @@ -8776,7 +8776,7 @@ window.CustomElements.addModule(function(scope) {
js: pre == 'ms' ? pre : pre.charAt(0).toUpperCase() + pre.substring(1)
};
})(),
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype.msMatchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];

/*** Functions ***/

Expand Down
2 changes: 1 addition & 1 deletion dist/x-tag-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -3985,7 +3985,7 @@ window.CustomElements.addModule(function(scope) {
js: pre == 'ms' ? pre : pre.charAt(0).toUpperCase() + pre.substring(1)
};
})(),
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype.msMatchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];

/*** Functions ***/

Expand Down
2 changes: 1 addition & 1 deletion dist/x-tag-no-polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
js: pre == 'ms' ? pre : pre.charAt(0).toUpperCase() + pre.substring(1)
};
})(),
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype.msMatchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];

/*** Functions ***/

Expand Down
2 changes: 1 addition & 1 deletion dist/x-tag-no-polyfills.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
js: pre == 'ms' ? pre : pre.charAt(0).toUpperCase() + pre.substring(1)
};
})(),
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];
matchSelector = Element.prototype.matches || Element.prototype.matchesSelector || Element.prototype.msMatchesSelector || Element.prototype[prefix.lowercase + 'MatchesSelector'];

/*** Functions ***/

Expand Down

0 comments on commit e63434d

Please sign in to comment.