I have a div with -webkit-overflow-scrolling:touch with a list of items in it.
I am using Angular ngTouch which handles all my ng-clicks as tap events on a phonegap App.
However when i scroll my list, and the ios native momentum scroll kicks in, i want to be able to stop momentum scrolling with a tap as well, just like you do on a native ios app.
What happens is that another tap event is fired. So my question is:
How can i stop the momentum (native) scrolling with a tap, without firing another actual tap event...
Hope my question is clear...