structural cleanup of mod_message

This commit is contained in:
friendica
2013-01-05 21:07:04 -08:00
parent 364e33e4f1
commit a07500b527
2 changed files with 23 additions and 32 deletions

12
view/js/mod_message.js Normal file
View File

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