mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
Fix clicking day of week headers did not take you to the day view.
This commit is contained in:
parent
05717457ad
commit
1b4deda76f
@ -998,7 +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))
|
||||
if(this.title.is(_ev.target) || this.title.has(_ev.target))
|
||||
{
|
||||
app.calendar.update_state({view: 'day',date: this.date.toJSON()});
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user