Issue 397: Drag Event Not Cloning Title
Status:  Fixed
Owner: ----
Closed:  Jan 2013
Reported by bham...@gmail.com, Jan 23, 2013
Created tree with custom recursive code (processing JSON), using node.sddChild methods. When enabling drag/drop and dragging, node title not following the drag operation. 

Discovered that when using addChild title is in a <span> block instead of an <a> block. 

Found code line 2763 of 1.2.2:

.append($(event.target).closest('a').clone());

Changed it to

.append($(event.target).closest('a,span').clone());

and it now works as desired.
Jan 24, 2013
Project Member #1 moo...@wwwendt.de
(No comment was entered for this change.)
Status: Accepted
Labels: Milestone-Release1.2.3
Jan 24, 2013
Project Member #2 moo...@wwwendt.de
This issue was closed by revision r634.
Status: Fixed