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