Fix selettore multiplo email

This commit is contained in:
loviuz 2020-02-03 19:33:15 +01:00
parent b808d4578d
commit 45b12cdb35
1 changed files with 5 additions and 2 deletions

View File

@ -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());
});
});