Trigger help-tooltips also by click (instead of only hover, which is Bootstraps default) (fixes #1468)

This commit is contained in:
Bernd Bestel
2021-06-27 19:34:28 +02:00
parent b7a6b91039
commit 33ea1e56cf
22 changed files with 39 additions and 18 deletions

View File

@@ -368,14 +368,6 @@ window.FontAwesomeConfig = {
searchPseudoElements: true
}
// Don't show tooltips on touch input devices
if (IsTouchInputDevice())
{
var css = document.createElement("style");
css.innerHTML = ".tooltip { display: none; }";
document.body.appendChild(css);
}
Grocy.FrontendHelpers = {};
Grocy.FrontendHelpers.ValidateForm = function(formId)
{