I'm using double click functionality in my code. It's working fine in desktop view but the problem is that when I switch to mobile/tablet view double tap doesn't work.
Here's my code sample
HTML:
<a (dblclick)="viewRecord(item.id)">View Record Details</a>
Component:
viewRecord(id) {
this.router.navigate(['course/view/', id]);
}
Any suggestions on how to resolve this problem will be highly appreciated