크롬에서 iScroll 터치 안되는 문제

iScroll이 사용된 영역에,

Unable to preventDefault inside passive event listener due to target being treated as passive.

라는 메시지와 함께 터치가 되지 않는 문제가 있었다.

iScroll 사용시에는 CSS에서

html {
    touch-action: manipulation;
}

를 반드시 넣기.

touch-action: manipulation
두 번 탭 동작을 비활성화합니다. 이 경우 브라우저에 의한 클릭 지연이 방지됩니다. 스크롤과 핀치 줌을 브라우저에게 맡깁니다.

역할은 이건데, 이 지연 방지가 iScroll 터치 오동작까지 막아주는 것으로 보임.