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

});