ページが一種のフルスクリーン モードになったときにtouchwipeを実行できますが、ページを離れるときにイベントのバインドを解除するにはどうすればよいですか?
私は試した...
$(document).unbind();
$(document).unbind('touchmove touchstart');
$(document).off();
$(document).off('touchmove touchstart');
$(document).touchwipe({
wipeLeft:function(){},
wipeRight:function(){},
wipeUp:function(){},
wipeDown:function(){}
});