Files
DrupalTutorial/core/misc/touchevents-test.js
2024-07-15 12:33:27 +02:00

12 lines
261 B
JavaScript
Executable File

/**
* @file
* A replacement for Modernizr touch events detection.
*/
document.documentElement.classList.add(
'ontouchstart' in window ||
(window.DocumentTouch && document instanceof window.DocumentTouch)
? 'touchevents'
: 'no-touchevents',
);