Search and Top Navigation
#2624 closed bug (fixed)
Opened March 31, 2008 03:16PM UTC
Closed April 01, 2008 06:45PM UTC
Last modified February 26, 2009 12:03PM UTC
Error in draggable("destroy") - fix included
Reported by: | chrishandorf | Owned by: | paul |
---|---|---|---|
Priority: | blocker | Milestone: | 1.5 |
Component: | ui.core | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Lines 76 & 77 in ui.draggable.js are:
destroy: function() {
this.handle.removeMouseInteraction();
This causes a javascript error like "this.handle has no properties".
I changed the code on line 77 to:
this.options.handle.removeMouseInteraction();
Now it seems to work fine.
This was already fixed in the trunk.