]> git.mxchange.org Git - friendica.git/blob - view/templates/poke_head.tpl
some work on poke template
[friendica.git] / view / templates / poke_head.tpl
1 <script src="{{$baseurl}}/library/jquery_ac/friendica.complete.js" ></script>
2
3 <script>$(document).ready(function() {
4         var a;
5         a = $("#poke-recip").autocomplete({
6                 serviceUrl: '{{$base}}/acl',
7                 minChars: 2,
8                 width: 350,
9                 onSelect: function(value,data) {
10                         $("#poke-recip-complete").val(data);
11                 }
12         });
13         a.setOptions({ params: { type: 'a' }});
14
15
16 });
17
18 </script>