Skip to content

Commit a393f84

Browse files
committed
fix(browser_adapter): element.matches only available with prefix (IE11)
1 parent 92c2c33 commit a393f84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/angular2/src/dom/browser_adapter.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,8 @@ setTitle(newTitle: string) {
279279
document.title = newTitle || '';
280280
}
281281
elementMatches(n, selector: string): boolean {
282-
return n instanceof HTMLElement && n.matches(selector);
282+
return n instanceof HTMLElement && n.matches ? n.matches(selector) :
283+
n.msMatchesSelector(selector);
283284
}
284285
isTemplateElement(el: any): boolean {
285286
return el instanceof HTMLElement && el.nodeName == "TEMPLATE";

0 commit comments

Comments
 (0)