Issue 1179: Call to eventElement.draggable() in draggableDayEvent() throws exception
Status:  WontFix
Owner: ----
Closed:  Aug 2013
Reported by toddf...@gmail.com, Nov 11, 2011
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;	

Aug 14, 2013
Project Member #1 adamrs...@gmail.com
you probably have the `editable` setting set to true, otherwise the code would never reach this point. If editable is set to true, and you dont have the correct dependencies on the page, I'd rather an error appear than for it to fail silently
Status: WontFix
Labels: -Type-Defect