mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-16 10:08:01 +02:00
Fix a case where clicking between the space for adding all day non-blocking area and the header went to day view.
This commit is contained in:
@ -1100,7 +1100,7 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
|
||||
}
|
||||
}
|
||||
// Day label
|
||||
else if(this.title.is(_ev.target) || this.title.has(_ev.target))
|
||||
else if(this.title.is(_ev.target) || this.title.has(_ev.target).length)
|
||||
{
|
||||
app.calendar.update_state({view: 'day',date: this.date.toJSON()});
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user