I have a slide page on Ionic V1 that utilizes previous and next buttons. Here is an example:
<button id="" class="button button-slide prev no-animation" ng-click="prev()" ng-show="activeIndex > 0" >
BACK
</button>
While the click function works well, I also need the same functionality for swipe events. However, because it is triggered by a click function, swiping does not work.
Any suggestions on how to address this issue? Thank you.