enhancement: elastic skin: allow to drag & drop addresses between address input fields during compose message (update source list address input field to)

pull/7345/head
Tomasz Chiliński 4 years ago
parent 6f8663f7ef
commit aae1189dbf
No known key found for this signature in database
GPG Key ID: 6792320218DC84E9

@ -242,9 +242,12 @@ function rcube_elastic_ui()
items: "> li.recipient",
handle: false,
connectWith: recipient_inputs,
stop: function(event, ui) {
receive: function(event, ui) {
ui.item.parent().find('li:not(.recipient)').appendTo(ui.item.parent());
ui.item.parent().find('input').trigger($.Event('keydown', { key: "," }));
if (ui.sender) {
ui.sender.find('input').trigger($.Event('keydown', { key: "," }));
}
}
});
});

Loading…
Cancel
Save