Created
April 2, 2017 12:58
-
-
Save adrianfaciu/c1d62111f0c9861ea0a70210449e8026 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
detectChanges(title: string, name: string) { | |
if (title !== this.title) { | |
this.title = title; | |
this.myComponent.title = title; | |
} | |
if (name !== this.name) { | |
this.name = name; | |
this.myComponent.name = name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment