mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
Stop little scrolling when mouseover day header, then all day events
This commit is contained in:
parent
112ed53f47
commit
4a2b0e7aaa
@ -1701,7 +1701,9 @@ var et2_calendar_timegrid = (function(){ "use strict"; return et2_calendar_view.
|
||||
var node = document.elementFromPoint(x,y);
|
||||
|
||||
// Ignore high level & non-time (grid itself, header parent & week label)
|
||||
if([this.node, this.gridHeader[0], this._labelContainer[0]].indexOf(node) !== -1)
|
||||
if([this.node, this.gridHeader[0], this._labelContainer[0]].indexOf(node) !== -1 ||
|
||||
// Day labels
|
||||
this.gridHeader.has(node) && !$j(node).hasClass("calendar_calDayColAllDay"))
|
||||
{
|
||||
return [];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user