We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92c2c33 commit a393f84Copy full SHA for a393f84
modules/angular2/src/dom/browser_adapter.ts
@@ -279,7 +279,8 @@ setTitle(newTitle: string) {
279
document.title = newTitle || '';
280
}
281
elementMatches(n, selector: string): boolean {
282
- return n instanceof HTMLElement && n.matches(selector);
+ return n instanceof HTMLElement && n.matches ? n.matches(selector) :
283
+ n.msMatchesSelector(selector);
284
285
isTemplateElement(el: any): boolean {
286
return el instanceof HTMLElement && el.nodeName == "TEMPLATE";
0 commit comments