mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 01:23:09 +02:00
13 lines
650 B
TypeScript
13 lines
650 B
TypeScript
import { deviceKind } from '@/scripts/device-kind';
|
|
|
|
const isTouchSupported = 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
|
|
|
export let isTouchUsing = deviceKind === 'tablet' || deviceKind === 'smartphone';
|
|
|
|
if (isTouchSupported && !isTouchUsing) {
|
|
window.addEventListener('touchstart', () => {
|
|
// maxTouchPointsなどでの判定だけだと、「タッチ機能付きディスプレイを使っているがマウスでしか操作しない」場合にも
|
|
// タッチで使っていると判定されてしまうため、実際に一度でもタッチされたらtrueにする
|
|
isTouchUsing = true;
|
|
}, { passive: true });
|
|
}
|