Opened 14 years ago
Closed 13 years ago
#2436 closed defect (wontfix)
hideIndicator for TreeDropTargetV3 doesn't properly hide in Safari 2.0.4
Reported by: | Owned by: | psowden | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | DnD | Version: | 0.4.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
The hideIndicator method doesn't properly hide the indicator during DND in Safari 2.0.4
specifically it looks like safari doesn't like this two properties
this.treeNode.contentNode.style.border = ""; this.treeNode.contentNode.style.width=""
and could be replaced with
this.treeNode.contentNode.style.border="0"; this.treeNode.contentNode.style.width="0px";
Note: See
TracTickets for help on using
tickets.
Safari2 no longer support pluswhich Tree and DnD have been completely rewritten (DnD for Tree isn't supported at all right now but will be eventually).