in my Full Calendar I don't want to support Selection with drag. Only Events should create in one Slot. In normal Browsers it works well (I just add to the selection X minutes). The problem I have, is that on Mobile you need to long tap and drag to fire my Add Event function.
Is there any way I can switch from long tap to single tap? The User should just tap to the slot, to add a event!
In "Month View" I want to change the view to Day. So I write this function:
dayClick: function (date, jsEvent, view) {
$('#calendar').fullCalendar('gotoDate', date);
$('#calendar').fullCalendar('changeView', 'agendaDay');
}
But on Mobile it don't work, because on single Tap nothing happened and on long tap it fire up my "Add Event" Function