2017-08-11 20:59:23 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Detect Touch Test</title>
|
2018-06-29 01:48:44 +00:00
|
|
|
<script src='modernizr.js'></script>
|
2017-08-11 20:59:23 +00:00
|
|
|
</head>
|
|
|
|
<body style="font-size:30vmin">
|
|
|
|
<script>
|
|
|
|
document.body.textContent = Modernizr.touchevents ? 'YES' : 'NO';
|
|
|
|
</script>
|
|
|
|
</body>
|
2018-06-29 01:48:44 +00:00
|
|
|
</html>
|