Double click on day in calendar creats new event starting that day

This commit is contained in:
rabuzarus 2015-05-15 00:07:41 +02:00
parent 5837fd4f81
commit fc4a76c033
1 changed files with 5 additions and 0 deletions

View File

@ -25,6 +25,11 @@
eventClick: function(calEvent, jsEvent, view) {
showEvent(calEvent.id);
},
loading: function(isLoading, view) {
if(!isLoading) {
$('td.fc-day').dblclick(function() { window.location.href='/events/new?start='+$(this).data('date'); });
}
},
eventRender: function(event, element, view) {
//console.log(view.name);