Search and Top Navigation
#4278 closed bug (fixed)
Opened March 05, 2009 02:57PM UTC
Closed March 05, 2009 03:20PM UTC
Last modified March 19, 2009 03:31AM UTC
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: | ||
Blocked by: | Blocking: |
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)
Attachments (0)
Change History (6)
Changed March 05, 2009 03:20PM UTC by comment:1
milestone: | TBD → 1.7.1 |
---|---|
priority: | major → minor |
resolution: | → fixed |
status: | new → closed |
Changed March 09, 2009 12:42PM UTC by comment:2
milestone: | 1.7.1 → 1.8 |
---|
Changed March 11, 2009 09:37AM UTC by comment:3
summary: | Bug in Droppable; droppable('option', 'accept', selector) fails → Droppable: option accept setter .droppable('option', 'accept', selector) fails |
---|
Changed March 11, 2009 09:50AM UTC by comment:4
priority: | minor → major |
---|
Changed March 11, 2009 10:13AM UTC by comment:5
priority: | major → critical |
---|
Changed March 19, 2009 03:31AM UTC by comment:6
milestone: | 1.8 → 1.7.1 |
---|
Merged to 1.7.1 in r2318
fixed in [2208]