Currently, I am implementing a directive in my application
https://github.com/prajwalkman/angular-slider
Most of the functionality is working fine except for touch support when trying to drag the sliders on the screen. Touch support seems to work on the provided examples but not in my application. I have verified that I am using the same version of angular, etc.
Here is the relevant code snippet from my application:
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 make any additional adjustments to enable touch support for mobile devices?
Thank you!