My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions
Issue 1179: Call to eventElement.draggable() in draggableDayEvent() throws exception
2 people starred this issue and may be notified of changes. Back to list
Status:  WontFix
Owner:  ----
Closed:  Aug 2013


Sign in to add a comment
 
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
Sign in to add a comment

Powered by Google Project Hosting