mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-10 15:47:54 +02:00
Calendar: Fix all day non-blocking events hover display issue
When there are too many all day events, we hide some and only show them all on hover. The day indicator was overlaid over the revealed events
This commit is contained in:
@ -2218,7 +2218,7 @@ export class et2_calendar_timegrid extends et2_calendar_view implements et2_IDet
|
||||
height: $node.height() > parseInt($node.css('line-height')) ?
|
||||
$node.css('padding-bottom') : '100%'
|
||||
});
|
||||
day = node;
|
||||
day = node.querySelector(".calendar_calDayColHeader_spacer") ?? node;
|
||||
this.gridHover
|
||||
.attr('data-non_blocking', 'true');
|
||||
break;
|
||||
|
Reference in New Issue
Block a user