mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-24 14:46:57 +00:00
* URLプレビューポップアップを改良 - タッチデバイスでは表示しないように - 幅をレスポンシブに * Use maxTouchPoints to detect touch device * fix
3 lines
116 B
TypeScript
3 lines
116 B
TypeScript
export function isDeviceTouch(): boolean {
|
|
return 'maxTouchPoints' in navigator && navigator.maxTouchPoints > 0;
|
|
}
|