mirror of
https://github.com/samsonjs/media.git
synced 2026-03-26 09:35:47 +00:00
7 lines
No EOL
221 B
JavaScript
7 lines
No EOL
221 B
JavaScript
(function () {
|
|
var $root = document.getElementsByClassName('root')[0];
|
|
if (window.hasEvent('touchstart')) {
|
|
$root.dataset.isTouch = true;
|
|
document.addEventListener('touchstart', function(){}, false);
|
|
}
|
|
})(); |