streams/view/js/mod_message.js
2013-01-05 21:07:04 -08:00

12 lines
223 B
JavaScript

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