Ticket #4278 (closed bug: fixed)
Droppable: option accept setter .droppable('option', 'accept', selector) fails
| Reported by: | d.wachss | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.7.1 |
| Component: | ui.droppable | Version: | 1.6rc6 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
$(...).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)
Change History
comment:1 Changed 4 years ago by Cloudream
- Priority changed from major to minor
- Status changed from new to closed
- Resolution set to fixed
- Milestone changed from TBD to 1.7.1
Note: See
TracTickets for help on using
tickets.


fixed in [2208]