2022-05-12 13:44:12 +00:00
|
|
|
/**
|
2022-09-09 06:26:42 +00:00
|
|
|
* @file
|
|
|
|
* A replacement for Modernizr touch events detection.
|
|
|
|
*/
|
2022-05-12 13:44:12 +00:00
|
|
|
|
2022-09-09 06:26:42 +00:00
|
|
|
document.documentElement.classList.add(
|
|
|
|
'ontouchstart' in window ||
|
|
|
|
(window.DocumentTouch && document instanceof window.DocumentTouch)
|
|
|
|
? 'touchevents'
|
|
|
|
: 'no-touchevents',
|
|
|
|
);
|