mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 13:22:06 +02: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);
|
var node = document.elementFromPoint(x,y);
|
||||||
|
|
||||||
// Ignore high level & non-time (grid itself, header parent & week label)
|
// 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 [];
|
return [];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user