| Issue 1179: | Call to eventElement.draggable() in draggableDayEvent() throws exception | |
| 2 people starred this issue and may be notified of changes. | Back to list |
I am using fullcalendar 1.5.2 without jQuery UI. When clicking on an event in the calendar, the draggableDayEvent() function throws an exception at line 2679 because the draggable() function is not defined. This exception results in the ugly JavaScript error dialog in IE 7/8, and noise in the Firebug log.
The following snippet is a simple fix starting on line 2677:
function draggableDayEvent(event, eventElement) {
if (!eventElement.draggable)
return;
|
|
| ► Sign in to add a comment |
Labels: -Type-Defect