I am unable to bind event (in ionic-4) to double click. if i do double click to call the async call (method), the event got crashed and it wont listen to single click also afterwards. Is this the issue of Zone.js in angular?
code:
<ion-input #inputdropdown
(click)="onFocus($event)" (dblclick)="onFocus($event)" >
</ion-input>
I want to trigger event using both single and double click. please help.