Skip to content

Commit bae45f6

Browse files
committed
fix(dom_adapter): add missing contains method signature
Needed to properly implement browser's DomAdapter. Caused by: angular/angular@a4076c7
1 parent 8a8e10a commit bae45f6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Diff for: nativescript-angular/dom-adapter.ts

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export class NativeScriptDomAdapter implements ɵDomAdapter {
4949
getProperty(_el: Element, _name: string): any { throw new Error("Not implemented!") }
5050
invoke(_el: Element, _methodName: string, _args: any[]): any { throw new Error("Not implemented!") }
5151

52+
contains(_nodeA: any, _nodeB: any): any /** TODO #9100 */ { throw new Error("Not implemented!") }
5253
parse(_templateHtml: string): any /** TODO #9100 */ { throw new Error("Not implemented!") }
5354
query(_selector: string): any { throw new Error("Not implemented!") }
5455
querySelector(_el: any /** TODO #9100 */, _selector: string): HTMLElement { throw new Error("Not implemented!") }

0 commit comments

Comments
 (0)