aboutsummaryrefslogblamecommitdiffstats
path: root/view/js/mod_message.js
blob: 82f60f46f41afebb868eb030ad49e32863df9d91 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                             

                               

                                                       
                  


           
$(document).ready(function() { 
	var a; 
	a = $("#recip").autocomplete({ 
		serviceUrl: baseurl + '/acl',
		minChars: 2,
		width: 250,
		id: 'recip-ac',
		onSelect: function(value,data) {
			$("#recip-complete").val(data);
		},
	});

});