| var mo=function(e){e.preventDefault();}; |
| |
| function stop(){ |
| document.body.style.overflow='hidden'; |
| document.addEventListener("touchmove",mo,false); |
| } |
| |
| function move(){ |
| document.body.style.overflow=''; |
| document.removeEventListener("touchmove",mo,false); |
| } |
Comments | NOTHING