I am using the following directive in my application
https://github.com/prajwalkman/angular-slider
It's all working ok apart from touch support when I'm trying to drag the sliders across the screen. Touch works on the examples given but not on my application. I have checked I'm using the same version of angular etc.
My code: filter.js (Controller)
$scope.lower_price_bound = 50;
$scope.upper_price_bound = 3000;
html
<slider floor="10" ceiling="3000" ng-model-low="lower_price_bound" ng-model-high="upper_price_bound"></slider>
Do I need to add anything to get touch support for mobile devices?
Thanks!