소스 검색

Allow 60 touchmove drags per second

master
Fen Dweller 5 년 전
부모
커밋
85839b0927
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js 파일 보기

@@ -3295,7 +3295,7 @@ document.addEventListener("touchmove", (e) => {
panOffsetY = e.touches[0].clientY;
updateSizes();
panReady = false;
setTimeout(() => panReady=true, 50);
setTimeout(() => panReady=true, 1000/60);
}
}, { passive: false });



불러오는 중...
취소
저장