#2431 closed bug (fixed)
Touch tolerance breaks when the draggable is taller than the droppable.
Reported by: | jeffkretz | Owned by: | eduardo |
---|---|---|---|
Priority: | blocker | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.3 |
Keywords: | tolerance | Cc: | |
Blocked by: | Blocking: |
Description
See demo page at:
http://cobalt.scorpiontechnology.com/Test/HTMLPage.htm
Only the top and bottom edges of the draggable activate the droppable. When the draggable is centered over the droppable, it cannot be dropped.
JK
Change History (7)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
need: | Review → Patch |
---|---|
Owner: | changed from paul to rworth |
comment:3 Changed 15 years ago by
Owner: | changed from rworth to paul |
---|
comment:4 Changed 15 years ago by
Owner: | changed from paul to braeker |
---|
comment:5 Changed 15 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:7 Changed 14 years ago by
Milestone: | → 1.5 |
---|
Note: See
TracTickets for help on using
tickets.
In stepping through the code, I see that the logic only detects for the presence of one corner inside another. So when the draggable is larger, it can overlap yet have no corner inside. This change solved the problem for me:
You can see this working at:
http://cobalt.scorpiontechnology.com/Test/HTMLPage2.htm
JK