| Issue 1590: | Firefox Breaks Event Drag | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Hi, I upgraded to last source to try and resolve the issue but there appears to be some issue where by dragging events in FF 16 (previous FFs work fine and have done for a more than a year of using fullcalendar, Safari/Chrome/IE unaffected), upon releasing the drag event, if a url is associated with the calendar item, it will force a click that shouldn't happen and take you to the URL without requesting it. Keith
Nov 8, 2012
Matt, If you change the "url" attribute to something else, you can get around the FF bug. I posted an example of how to alter code here: http://stackoverflow.com/questions/13095533/full-calendar-eventdrop-firing-eventclick-in-firefox-15 and you can also check here: https://code.google.com/p/fullcalendar/issues/detail?id=1523
Aug 15, 2013
pretty sure this is fixed with the latest FF/FullCalendar
Status:
Done
|
|
| ► Sign in to add a comment |
Yep, we are running into the same issue. Seems like it started with FF 15. I suspect this is actually a FF bug, I have tried adding: ev.preventDefault(); ev.stopPropagation(); ev.stopImmediatePropagation(); ev.originalEvent.preventDefault(); ev.originalEvent.stopPropagation(); ev.originalEvent.stopImmediatePropagation(); and everything else I could think of into the eventDrop function, but it still happens. Are there any web experts that can confirm that FF is doing the wrong thing here? Matt