#6174 closed bug (fixed)
Mouse: 1.4.3rc2 breaks interactions for some markup
Reported by: | squix | Owned by: | |
---|---|---|---|
Priority: | critical | Milestone: | 1.8.6 |
Component: | ui.mouse | Version: | 1.8.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Bug in: 1.4.3rc2 / jQuery UI incompatibility
If you use helper: 'clone' option in draggable, you'll notice a strange behavior, first the draggable starts dragging with the mouse, then it stops then if you release the mouse the draggable still stays until you "click" it returns if you have the revert option.
Steps to reproduce, create a $(el).draggable with the following options:
addClasses: false, appendTo: 'body', scroll: false, revert: 'invalid', helper: 'clone', cursor: 'pointer',
If you remove the helper:'clone' it works as normal!
Change History (9)
comment:1 follow-up: 2 Changed 12 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
Resolution: | worksforme |
---|---|
Status: | closed → reopened |
Replying to scott.gonzalez:
Works for me in Chrome dev, Firefox 3.6, Safari 5, Opera 10.62, IE 6.
Investigated some more, turns out the issue is when the draggable is a "link". Only Chrome seems to be affected, works normally in mozilla.
So again, to reproduce: (Tested in Chrome 6)
<a class="mylink" href="javascript:void(0);">My title</a>
$('.mylink').draggable({
addClasses: false, appendTo:'body', revert:'invalid', helper:'clone', zIndex: 500
});
If you remove the helper:"clone" option it works as normal. Again jQuery 1.4.2 does not have this issue so there seems to be something going on in Chrome, and jQuery 1.4.3rc1/2
comment:3 Changed 12 years ago by
Component: | ui.draggable → ui.mouse |
---|---|
Milestone: | 1.next → 1.9 |
Resolution: | → fixed |
Status: | reopened → closed |
Summary: | 1.4.3rc2 breaks draggable with "helper-clone" option → Mouse: 1.4.3rc2 breaks interactions on anchors |
Fixed in a829697.
comment:4 Changed 12 years ago by
Summary: | Mouse: 1.4.3rc2 breaks interactions on anchors → Mouse: 1.4.3rc2 breaks interactions for some markup |
---|
comment:5 Changed 12 years ago by
Milestone: | 1.9 → 1.8.6 |
---|
comment:7 Changed 12 years ago by
Mouse: Always call event.preventDefault() in _mouseDown if we've met the starting conditions. Fixes #6174 - Mouse: 1.4.3rc2 breaks interactions on anchors.
Changeset: a829697d0c9083438bde3a2e47964c29bfbc9417
Works for me in Chrome dev, Firefox 3.6, Safari 5, Opera 10.62, IE 6.