Fix timegrid column header clicks did not add a new full-day event

This commit is contained in:
Nathan Gray 2016-04-06 14:56:03 +00:00
parent 95ea446e7b
commit 47de53e086

View File

@ -998,12 +998,7 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
click: function(_ev)
{
// Click on the title
if(this.title.is(_ev.target) || this.title.has(_ev.target))
{
app.calendar.update_state({view: 'day',date: this.date.toJSON()});
return false;
}
else if ($j(_ev.target).hasClass('calendar_calAddEvent') && !_ev.target.dataset.whole_day)
if ($j(_ev.target).hasClass('calendar_calAddEvent') && !_ev.target.dataset.whole_day)
{
// Default handler to open a new event at the selected time
var options = {
@ -1018,6 +1013,12 @@ var et2_calendar_daycol = (function(){ "use strict"; return et2_valueWidget.exte
this.egw().open(null, 'calendar', 'add', options, '_blank');
return false;
}
// Day label
else if(this.title.is(_ev.target) || this.title.has(_ev.target))
{
app.calendar.update_state({view: 'day',date: this.date.toJSON()});
return false;
}
// Header, but not the hidden event indicators that are in there
else if (this.header.has(_ev.target).length && !$j('.hiddenEventBefore',this.header).has(_ev.target).length ||
this.header.is(_ev.target)