I'm currently using Angular 1.3.13, angular-touch 1.3.15, and Cordova 4.1.2 with the following code.
<div ng-controller="myController">
<ul>
<li ng-swipe-right="swipeRight()">Swipe Me</li>
<li ng-swipe-right="swipeRight()">Swipe Me</li>
<li ng-swipe-right="swipeRight()">Swipe Me</li>
<li ng-swipe-right="swipeRight()">Swipe Me</li>
</ul>
</div>
With the following controller.
angular.module('myApp').controller('myController', function($scope, messages) {
$scope.swipeRight = function() {
console.log('swipe-right');
}
});
In the Windows Phone and Windows 8.1 Emulator the swipe event fires fine until the list gets large enough to trigger an overflow the swipe events stop firing. If you set the overflow property to hidden then the swipe events resume working. Has anyone seen this issue before? Please let me know if more info is needed.