mirror of
https://github.com/grocy/grocy.git
synced 2026-04-05 20:36:15 +02:00
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
/* global DocumentTouch */
|
|
|
|
// TODO: DocumentTouch is deprecated
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/DocumentTouch
|
|
function IsTouchInputDevice()
|
|
{
|
|
if (("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
export { IsTouchInputDevice } |