Bug in Droppable
Bug in Droppable
$(...).droppable('option', 'accept', selector) gives an error
("accept" not defined). The bug is line 54 in _setData, it reads:
return d.is(accept);
It should be:
return d.is(value);
(It looks like the code was copy/pasted from _init without
testing)
I filed ticket <a href="http://dev.jqueryui.com/ticket/4278">#4278</a>
Danny