andreruffert/rangeslider.js

Vertical slider on mobile

nexuz6 opened this issue · 0 comments

When using the vertical slider on mobile the whole screen moves and thus making it unusable.

I had to add this for it to work.

 $('.rangeslider').on('touchmove', function (event) {
      event.preventDefault();
    });

Is there a better way to solve this?