sources management page

This commit is contained in:
friendica
2013-09-29 18:18:05 -07:00
parent 046ddea9e8
commit a26e48b013
6 changed files with 205 additions and 0 deletions

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

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