mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
15 lines
365 B
JavaScript
15 lines
365 B
JavaScript
$(document).ready(function() {
|
|
$("#contacts-search").contact_autocomplete(baseurl + '/acl', 'a', true);
|
|
});
|
|
|
|
$("#contacts-search").keyup(function(event){
|
|
if(event.keyCode == 13){
|
|
$("#contacts-search-submit").click();
|
|
}
|
|
});
|
|
$(".autocomplete-w1 .selected").keyup(function(event){
|
|
if(event.keyCode == 13){
|
|
$("#contacts-search-submit").click();
|
|
}
|
|
});
|
|
|