AljosaH
AljosaH
I'm having the same problem in my ionic project. Out of 5 mobile devices I was able to catch "dayClick" events on just 1. It always works from desktop. Any...
Just found out the dayClick event works if I disable scrolling for the page content. See: https://github.com/angular-ui/ui-calendar/issues/96 Would love to have a proper solution though as disabling scrolling is not...
My final solution was to hack fullcalendar.js. I had to force the dayClick event to trigger on event "click" and not "mousedown" as originally. I lost dragging functionality on calendar...
Ok, here it goes: All change are made in: `$.extend(Grid.prototype, {...` (around line 4000) change `bindHandlers` to: ``` bindHandlers: function() { var _this = this; /*this.el.on('mousedown', function(ev) { if (...
I probably should have noted, that I'm using FullCalendar v2.1.1.