grocy/js/helpers/input.js
2021-06-18 19:32:57 +02:00

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 }