Skip to content

Commit

Permalink
fix(dom_adapter): add missing contains method signature
Browse files Browse the repository at this point in the history
Needed to properly implement browser's DomAdapter.
Caused by: angular/angular@a4076c7
  • Loading branch information
sis0k0 committed Mar 20, 2017
1 parent 8a8e10a commit bae45f6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions nativescript-angular/dom-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export class NativeScriptDomAdapter implements ɵDomAdapter {
getProperty(_el: Element, _name: string): any { throw new Error("Not implemented!") }
invoke(_el: Element, _methodName: string, _args: any[]): any { throw new Error("Not implemented!") }

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

0 comments on commit bae45f6

Please sign in to comment.