Skip to content

Instantly share code, notes, and snippets.

@WouterSpaak
Created November 9, 2018 12:41
Show Gist options
  • Save WouterSpaak/73dcbaab191583de85f660a98f1e11e3 to your computer and use it in GitHub Desktop.
Save WouterSpaak/73dcbaab191583de85f660a98f1e11e3 to your computer and use it in GitHub Desktop.
@Directive({
selector: '[mouseClick]'
})
export class MouseClickDirective {
@HostListener('click', ['$event']) handleClick(click: MouseEvent) {
console.log(`Clicked at X: ${click.clientX} and Y: ${click.clientY}`);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment