mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-25 12:08:06 +09:00
066b8e6f73
* 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;
|
|
}
|