mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
Fix infinite loop when hovering over holidays
This commit is contained in:
parent
59b0b985b0
commit
7debe27ada
@ -81,7 +81,10 @@ var et2_calendar_event = (function(){ "use strict"; return et2_valueWidget.exten
|
||||
{
|
||||
event.options.statustext_html = true;
|
||||
event.set_statustext(event._tooltip());
|
||||
return event.div.trigger('mouseenter');
|
||||
if(event.statustext)
|
||||
{
|
||||
return event.div.trigger('mouseenter');
|
||||
}
|
||||
}
|
||||
// Hacky to remove egw's tooltip border and let the mouse in
|
||||
window.setTimeout(function() {
|
||||
|
Loading…
Reference in New Issue
Block a user