if ((body).hasClass('dialog-visible')){
document.body.addEventListener("touchmove", function(e) {
e.preventDefault();
}, false);
}
I am trying to remove preventDefault(); when the dialog is closed.
I am trying to remove preventDefault(); when the dialog is closed. | |||||||||
feedback
|
|
There is no 'opposite' of preventDefault(); However, you can choose nót to call it at any given time you want, by moving the if:
Of course, another option is to use | |||
|
feedback
|