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(){
|
$(".destinatari").each(function(){
|
||||||
$(this).autocomplete({
|
$(this).autocomplete({
|
||||||
source: emails,
|
source: emails,
|
||||||
minLength: 0
|
minLength: 0,
|
||||||
|
close: function(){
|
||||||
|
aggiungi_destinatario();
|
||||||
|
}
|
||||||
}).focus(function() {
|
}).focus(function() {
|
||||||
$(this).autocomplete("search", $(this).val())
|
$(this).autocomplete("search", $(this).val());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue