streams/view/js/mod_message.js

14 lines
239 B
JavaScript
Raw Normal View History

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