blob: 8e7ab4831f8565e09cabe14e74f69fe8ec988954 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/**
* @file
* A replacement for Modernizr touch events detection.
*/
document.documentElement.classList.add(
'ontouchstart' in window ||
(window.DocumentTouch && document instanceof window.DocumentTouch)
? 'touchevents'
: 'no-touchevents',
);
|