mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Fixed visual test for Autocomplete to include select event. Test for #5405 Autocomplete: select event not triggered when mousedown duration > blur timeout
This commit is contained in:
parent
0460b46c1c
commit
bf673476ee
@ -40,8 +40,11 @@
|
||||
close: function() {
|
||||
log("Hiding suggestions");
|
||||
},
|
||||
select: function(event, ui) {
|
||||
log("Selected: " + ui.item.value);
|
||||
},
|
||||
change: function(event, ui) {
|
||||
log(ui.item ? ("Selected: " + ui.item.value) : "Nothing selected, input was " + this.value);
|
||||
log(ui.item ? ("Changed to: " + ui.item.value) : "Nothing selected, input was " + this.value);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user