From a26e48b013f6674e0cb96c143739b0d5c3f71f63 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 29 Sep 2013 18:18:05 -0700 Subject: sources management page --- view/js/mod_sources.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 view/js/mod_sources.js (limited to 'view/js') diff --git a/view/js/mod_sources.js b/view/js/mod_sources.js new file mode 100644 index 000000000..140f13843 --- /dev/null +++ b/view/js/mod_sources.js @@ -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); + } + }); + +}); -- cgit v1.2.3