반응형 웹 개발 중에서 브라우저를 아래로 당겼을 때 새로고침 되는 현상을 없애주는 코드 /* prevent pull-down-to-refresh of mobile chrome https://stackoverflow.com/a/55832568 */ (function() { var touchStartHandler, touchMoveHandler, touchPoint; // Only needed for touch events on chrome. if ((window.chrome || navigator.userAgent.match("CriOS")) && "ontouchstart" in document.documentElement) { touchStartHandler = function() { // Only ne..