aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_poke.js
blob: 78972888f4998c9c83b6c28d27059905af920c2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$(document).ready(function() { 
	var a; 
	a = $("#poke-recip").autocomplete({ 
		serviceUrl: baseurl + '/acl',
		minChars: 2,
		width: 250,
		id: 'poke-recip-ac',
		onSelect: function(value,data) {
			$("#poke-recip-complete").val(data);
		}			
	});
	a.setOptions({ params: { type: 'a' }});

});