Skip to main content

Bug Tracker

Side navigation

#2722 closed bug (fixed)

Opened April 20, 2008 10:00AM UTC

Closed May 04, 2008 02:18PM UTC

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>
Attachments (0)
Change History (4)

Changed April 21, 2008 03:19PM UTC by telega comment:1

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.

Changed April 23, 2008 09:49AM UTC by paul comment:2

status: newassigned

Changed May 04, 2008 07:47AM UTC by paul comment:3

priority: majorminor

Changed May 04, 2008 02:18PM UTC by paul comment:4

resolution: → fixed
status: assignedclosed

Fixed in r5415!