Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrianfaciu/c1d62111f0c9861ea0a70210449e8026 to your computer and use it in GitHub Desktop.
Save adrianfaciu/c1d62111f0c9861ea0a70210449e8026 to your computer and use it in GitHub Desktop.
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