モバイル画面で表示更新直後にヘッダーメニューをタップしてもポップアップにならないようにする (#8160)

This commit is contained in:
xianon 2022-01-19 00:25:29 +09:00 committed by GitHub
parent 7be09a4af9
commit f14aba65c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ if (isTouchSupported) {
}, { passive: true });
window.addEventListener('touchend', () => {
// 子要素のtouchstartイベントでstopPropagation()が呼ばれると親要素に伝搬されずタッチされたと判定されないため、
// touchendイベントでもtouchstartイベントと同様にtrueにする
isTouchUsing = true;
isScreenTouching = false;
}, { passive: true });
}