Last active
April 11, 2023 15:18
-
-
Save AlejandroPerezMartin/ecd014cb8104c235b582f3a3e1649cf7 to your computer and use it in GitHub Desktop.
Angular 9+ Directive to remove focus after clicking the specified selector/s
In my case, it has to be wrapped with setTimout() like this otherwise the timing messes up with it to function properly:
@HostListener('click')
onClick() {
setTimeout(() => this.elRef.nativeElement.blur());
}
Thanks👌
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
very nice!