Changes between Initial Version and Version 3 of Ticket #5959
- Timestamp:
- Nov 5, 2012, 6:46:25 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5959
-
Property
Priority
changed from
blocker
tomajor
-
Property
Milestone
changed from
TBD
to2.0.0
-
Property
Priority
changed from
-
Ticket #5959 – Description
initial v3 1 1 I have a draggable list on the page, whose items are connected to multiple sortable lists using 'connectToSortable'. When I drag the first element and drop in to one of the sortables, it works fine. But on subsequent operations, the drag/drop fails with the following errors in the FF (3.6.8) console. 2 2 3 {{{ 3 4 Error: this.offsetParent[0] is undefined 4 5 Source File: http://www.ship.989studios.com/js/jquery/ui/jquery-ui-1.8.4.custom.js … … 8 9 Source File: http://www.ship.989studios.com/js/jquery/ui/jquery-ui-1.8.4.custom.js 9 10 Line: 3960 11 }}} 10 12 11 13 After changing the method _getParentOffset in jquery-ui-1.8.4.custom.js as follows, it works fine. Is this a valid fix? 12 14 {{{ 13 15 _getParentOffset: function() { 14 16 … … 41 43 42 44 } 43 45 }}} 44 46 Thanks