Opened 15 years ago
Closed 15 years ago
#2722 closed bug (fixed)
Draggable: click event shouldn't fire after dragging
Reported by: | telega | Owned by: | paul |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.4 |
Component: | ui | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
"Click" event shouldn't fire when item is released after being dragged. Sample code:
<script src="jquery.js"></script> <script src="jquery.dimensions.js"></script> <script src="ui.mouse.js"></script> <script src="ui.draggable.js"></script> <script> $(document).ready(function() { $("#test").draggable() .click(function() { alert('click'); }); }); </script> <style> #test { width: 100px; height: 100px; background: lightblue; } </style> <div id="test"></div>
Change History (4)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Status: | new → assigned |
---|
comment:3 Changed 15 years ago by
Priority: | major → minor |
---|
Note: See
TracTickets for help on using
tickets.
The same thing for Resizables. I have a resizable image, wrapped in a link: <a href="the link"><img></a> When I'm done resizing image, click event is fired and causes the link to be executed, which is not expected behavior.