From 45b12cdb351e81ac970af49da28da2fd91827edb Mon Sep 17 00:00:00 2001 From: loviuz Date: Mon, 3 Feb 2020 19:33:15 +0100 Subject: [PATCH] Fix selettore multiplo email --- mail.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mail.php b/mail.php index e7bda4e89..7e08b5075 100644 --- a/mail.php +++ b/mail.php @@ -149,9 +149,12 @@ echo ' $(".destinatari").each(function(){ $(this).autocomplete({ source: emails, - minLength: 0 + minLength: 0, + close: function(){ + aggiungi_destinatario(); + } }).focus(function() { - $(this).autocomplete("search", $(this).val()) + $(this).autocomplete("search", $(this).val()); }); });