mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX #6089 Avoid javascript error when "Allow drag & drop reordering" enabled, and attempt to drag a file from one folder to another is performed
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@111932 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
03f107ef35
commit
ca53fbd49f
@ -147,6 +147,8 @@ Tree.prototype = {
|
||||
* If 'before' is specified, then it will be inserted before that.
|
||||
*/
|
||||
appendTreeNode : function(child, before) {
|
||||
if(!child) return;
|
||||
|
||||
// Remove from the old parent node - this will ensure that the classes of the old tree
|
||||
// item are updated accordingly
|
||||
if(child.parentTreeNode) {
|
||||
|
Loading…
Reference in New Issue
Block a user