var targetModalId="";var touchStartY;$(window).on("touchstart",function(a){touchStartY=a.originalEvent.changedTouches[0].screenY});var touchmovefunc=function(e){var g=$(window).height();var a=$("#"+targetModalId+" .modal-inner").outerHeight();if(g>=a){e.preventDefault();return}var b=e.originalEvent?e.originalEvent.changedTouches[0].screenY:e.changedTouches[0].screenY;var d=document.getElementById(targetModalId);var c=touchStartY<=b&&d.scrollTop===0;var f=touchStartY>=b&&d.scrollHeight-d.scrollTop===a;if(c||f){e.preventDefault()}};function getTouchmovefunc(){return touchmovefunc}function disableDocScroll(a){targetModalId=a;$("html, body").css("overflow","hidden");$("#"+targetModalId).css("overflow","auto");window.addEventListener("touchmove",touchmovefunc,{passive:false})}function enableDocScroll(a){targetModalId=a;$("html, body").css("overflow","auto");$(window).off(".noScroll");if(!targetModalId){return}window.removeEventListener("touchmove",touchmovefunc,{passive:false})};