fix(study): blockGesture TS 어노테이션 제거 (plain JS 페이지)

This commit is contained in:
Hyungi Ahn
2026-04-27 10:20:28 +09:00
parent 1a8667bcec
commit aad21f4daa
@@ -38,7 +38,7 @@
// iOS Safari 핀치줌 차단 — 손가락 두 개로 캔버스 만질 때 페이지 zoom 발생 방지.
// touch-action: none / manipulation 만으로 막히지 않는 gesture 이벤트 (비표준) 도 차단.
function blockGesture(e: Event) { e.preventDefault(); }
function blockGesture(e) { e.preventDefault(); }
onMount(() => {
load();