Fix selettore multiplo email
This commit is contained in:
parent
b808d4578d
commit
45b12cdb35
7
mail.php
7
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());
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue