mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-07-14 11:49:11 +09:00
df76a227dc
First open source release of Campfire 🎉
4 lines
102 B
JavaScript
4 lines
102 B
JavaScript
export function isTouchDevice() {
|
|
return "ontouchstart" in window && navigator.maxTouchPoints > 0
|
|
}
|