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;
|
|
}
|