Skip to content

Commit

Permalink
Fix delete c_event form when the date is 'today' - refs #8065
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Mar 7, 2016
1 parent 5d22cb0 commit 69ff271
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main/template/default/agenda/month.tpl
Expand Up @@ -245,6 +245,10 @@ $(document).ready(function() {
}
},
eventClick: function(calEvent, jsEvent, view) {
if (!calEvent.end) {
calEvent.end = calEvent.start;
}
var start_date = calEvent.start.format("YY-MM-DD");
if (calEvent.allDay == 1) {
Expand Down

0 comments on commit 69ff271

Please sign in to comment.