5 lines
176 B
JavaScript
5 lines
176 B
JavaScript
/** Whether or not touch gestures are supported by the browser. */
|
|
export var touch = 'ontouchstart' in window ||
|
|
(navigator.msMaxTouchPoints ? true : false) ||
|
|
false;
|