blob: 1880222bc794ecbc97c52c179d66fc51e12c3cac (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
$(document).ready(function() {
var a;
a = $("#contacts-search").autocomplete({
serviceUrl: baseurl + '/acl',
minChars: 2,
width: 350,
});
a.setOptions({ params: { type: 'a' }});
});
|