Issue 2312: dropAccept doesn't work with fullcalendar 2.1.1
Status:  Released
Owner: ----
Closed:  Nov 2014
Reported by sentes...@gmail.com, Oct 8, 2014
example:
$("#calendar").fullcalendar({
   dropAccept: ".some-class"
});

and still I can drop whatever I want. I checked the fullcalendar.js file and code for checking elements that can be dropped is missing.

Quick Fix:
Line 6864: if (this.opt('droppable') 
change this line to:
if (this.opt('droppable') && $(ev.target).filter(this.opt("dropAccept")).length > 0)

Oct 30, 2014
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Accepted
Labels: Type-Bug
Nov 15, 2014
Project Member #2 adamrs...@gmail.com
this has been reintroduces in 2.2
https://github.com/arshaw/fullcalendar/releases/tag/v2.2.0

thanks!
Status: Released