diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-03 00:12:45 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2012-03-03 00:12:45 +0100 |
commit | 333942898782f3e197a660eb841ccbd296a83475 (patch) | |
tree | e4c68c144bf5a7753c403d28db22e6b896269651 /js | |
parent | ae79de3039e0d4ef630aff197bf8256f4abed1cc (diff) | |
download | volse-hubzilla-333942898782f3e197a660eb841ccbd296a83475.tar.gz volse-hubzilla-333942898782f3e197a660eb841ccbd296a83475.tar.bz2 volse-hubzilla-333942898782f3e197a660eb841ccbd296a83475.zip |
fix @mention autocomplete in comments
Diffstat (limited to 'js')
-rwxr-xr-x | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index a5d1214cb..c20455ad1 100755 --- a/js/main.js +++ b/js/main.js @@ -292,7 +292,7 @@ $('body').css('cursor', 'auto'); } /* autocomplete @nicknames */ - $(".comment-edit-wrapper textarea").contact_autocomplete(baseurl+"/acl"); + $(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl"); }); } |