Hi guys
I have a scrollable list with an event on the item. Whenever I scroll through the list and the scroll event has not fully stopped and I click on a item it most of the time opens the wrong item although “I click on another item”.
<ion-list>
<ion-item tappable *ngFor="let a of ns" (click)="open(a)" text-wrap>
<ion-thumbnail item-left>
<ion-img src="{{ a.file }}"></ion-img>
</ion-thumbnail>
<h2> {{a.title}} </h2>
<p [innerHTML]="a.attributes.teaser"> </p>
<ion-icon name="ios-arrow-forward" item-right></ion-icon>
</ion-item>
</ion-list>
Is there any way to change that behaviour or is it not possible because of the scrolling?
thanks in advance (If something is unclear just ask )