diff options
author | friendica <info@friendica.com> | 2014-10-23 22:00:16 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-10-23 22:00:16 -0700 |
commit | 1a9b8d4f0c89436d26f3e2e4aafb81c2e62fc8c2 (patch) | |
tree | f10cbcf6bb64fb217071bcc4051772330ba6119e /view/tpl/display-head.tpl | |
parent | 34781433c1fabd7a4992497da5ee475db0ada3a8 (diff) | |
download | volse-hubzilla-1a9b8d4f0c89436d26f3e2e4aafb81c2e62fc8c2.tar.gz volse-hubzilla-1a9b8d4f0c89436d26f3e2e4aafb81c2e62fc8c2.tar.bz2 volse-hubzilla-1a9b8d4f0c89436d26f3e2e4aafb81c2e62fc8c2.zip |
don't offer forum (@name+) completion in comments, since it won't do anything.
Diffstat (limited to 'view/tpl/display-head.tpl')
-rwxr-xr-x | view/tpl/display-head.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/display-head.tpl b/view/tpl/display-head.tpl index 3d4e7e96a..007d33fe8 100755 --- a/view/tpl/display-head.tpl +++ b/view/tpl/display-head.tpl @@ -1,8 +1,8 @@ <script> $(document).ready(function() { - $(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl"); + $(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl?f=&n=1"); // make auto-complete work in more places - $(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl"); + $(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl?f=&n=1"); }); </script> |