mirror of
https://github.com/grocy/grocy.git
synced 2025-08-15 02:04:38 +00:00
Don't show tooltips on touch input devices (this closes #67)
This commit is contained in:
@@ -31,3 +31,13 @@ GetUriParam = function(key)
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
IsTouchInputDevice = function()
|
||||
{
|
||||
if (("ontouchstart" in window) || window.DocumentTouch && document instanceof DocumentTouch)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user