mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
Fix dragging an email in compose from one field and dropping it into the same field, removes the item
This commit is contained in:
parent
f69c198183
commit
695a72e3e8
@ -4548,7 +4548,7 @@ app.classes.mail = AppJS.extend(
|
||||
}
|
||||
|
||||
var draggedValue = ui.draggable.text();
|
||||
|
||||
|
||||
// index of draggable item in selection list
|
||||
var dValueKey = draggedValue;
|
||||
|
||||
@ -4588,7 +4588,7 @@ app.classes.mail = AppJS.extend(
|
||||
if (!jQuery.isEmptyObject(fromWidget)
|
||||
&& !(ui.draggable.attr('class').search('mailCompose_copyEmail') > -1))
|
||||
{
|
||||
if (!_removeDragged(fromWidget, dValueKey))
|
||||
if (widget.node != fromWidget.node && !_removeDragged(fromWidget, dValueKey))
|
||||
{
|
||||
//Not successful remove, returns the item to its origin
|
||||
jQuery(ui.draggable).draggable('option','revert',true);
|
||||
@ -4609,8 +4609,6 @@ app.classes.mail = AppJS.extend(
|
||||
delete dragItems.splice(i,1);
|
||||
}
|
||||
});
|
||||
//Destroy draggables after dropping, we need to enable them again
|
||||
dragItems.draggable('destroy');
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user