Skip to content

Instantly share code, notes, and snippets.

@pankajparkar
Created March 1, 2019 03:24
Show Gist options
  • Save pankajparkar/fb93e6eca19032c5f3aa9022486e42be to your computer and use it in GitHub Desktop.
Save pankajparkar/fb93e6eca19032c5f3aa9022486e42be to your computer and use it in GitHub Desktop.
Highlight code
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