Created
March 1, 2019 03:24
-
-
Save pankajparkar/fb93e6eca19032c5f3aa9022486e42be to your computer and use it in GitHub Desktop.
Highlight code
This file contains hidden or 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
ngAfterViewChecked(): void { | |
this.zone.runOutsideAngular(() => { | |
this.el.nativeElement.classList.add('highlight') | |
setTimeout(() => { | |
this.el.nativeElement.classList.remove('highlight') | |
}, 1500) | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment