Skip to content

Instantly share code, notes, and snippets.

@nivrith
Created November 16, 2021 07:54
Show Gist options
  • Save nivrith/dd02065ce7b00d61fc21cb991a656970 to your computer and use it in GitHub Desktop.
Save nivrith/dd02065ce7b00d61fc21cb991a656970 to your computer and use it in GitHub Desktop.
Bind Single and Double Click events in Angular without bubbling issues
// In some angular template bind to events `click.single` and `click.double`
<div (click.single)="onSingleClick($event)" (click.double)="onDoubleClick(event)">
I got 99 problems but the click ain't one
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment