I have this config on my page:
<script>
var elem = document.getElementById('mySwipe');
window.mySwipe = Swipe(elem, {
continuous: false,
disableTouch: false,
});
</script>
I was wondering is it possible to make it so 10 seconds after the page has finished loading to change the value of disableTouch
to true
?