Side navigation
#2431 closed bug (fixed)
Opened February 28, 2008 04:25PM UTC
Closed March 31, 2008 03:58AM UTC
Touch tolerance breaks when the draggable is taller than the droppable.
Reported by: | jeffkretz | Owned by: | braeker |
---|---|---|---|
Priority: | undecided | Milestone: | 1.2.4 |
Component: | ui | 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
Attachments (0)
Change History (5)
Changed February 28, 2008 05:40PM UTC by comment:1
Changed March 05, 2008 01:18PM UTC by comment:2
need: | Review → Patch |
---|---|
owner: | paul → rworth |
Changed March 14, 2008 06:52PM UTC by comment:3
owner: | rworth → paul |
---|
Changed March 25, 2008 03:11PM UTC by comment:4
owner: | paul → braeker |
---|
Changed March 31, 2008 03:58AM UTC by comment:5
resolution: | → fixed |
---|---|
status: | new → closed |
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