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