mirror of
https://github.com/hotomoe/hotomoe
synced 2025-01-07 10:22:53 +09:00
96eab7e12b
* URLプレビューポップアップを改良 - タッチデバイスでは表示しないように - 幅をレスポンシブに * Use maxTouchPoints to detect touch device * fix
4 lines
116 B
TypeScript
4 lines
116 B
TypeScript
export function isDeviceTouch(): boolean {
|
|
return 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
|
}
|