mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-09 16:35:02 +02:00
suppress tooltip / statustext / title on mobile devices
This commit is contained in:
@ -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)
|
||||
}
|
||||
};
|
||||
|
||||
});
|
||||
|
||||
});
|
Reference in New Issue
Block a user