Stopping Bubbling in Angular; prevent bubbling angular; stop event bubbling; prevent event bubbling

Опубликовано: 16 Февраль 2022
на канале: CoderDmitri
972
7

Stopping Bubbling in Angular; prevent bubbling angular; stop event bubbling; prevent event bubbling

source: https://stackoverflow.com/questions/3...
Solution by: dnc253 - the highest rated solution one

create a directive:
ng generate directive folderToStoreItIn/nameOfDirective

Reminders:
- make sure that the directive is added into the app.module.ts
- make sure that you are listening to CORRECT EVENT - example, it did NOT work for me because I copy and pasted 'click' event, but I needed 'dblclick', so then it worked