Files
drupal11-ddev/web/core/misc/touchevents-test.js

12 lines
261 B
JavaScript
Raw Permalink Normal View History

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