suppress tooltip / statustext / title on mobile devices

This commit is contained in:
ralf
2024-07-27 12:52:14 +02:00
parent 5dbf3152f3
commit d6dfaaab81
5 changed files with 6 additions and 7 deletions

View File

@ -178,7 +178,7 @@ egw.extend('tooltip', egw.MODULE_WND_LOCAL, function(_app, _wnd)
var options = {...optionsDefault, ...(_options||{})};
_elem = jQuery(_elem);
if (_html != '')
if (_html && !egwIsMobile())
{
_elem.bind('mouseenter.tooltip', function(e) {
if (_elem != current_elem)
@ -263,5 +263,4 @@ egw.extend('tooltip', egw.MODULE_WND_LOCAL, function(_app, _wnd)
}
};
});
});