diff options
author | Simon <simon@kisikew.org> | 2012-03-02 16:02:02 -0800 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-02 16:02:02 -0800 |
commit | d32edf83d3fb3bb4bebdc9d24001eff000c2a660 (patch) | |
tree | e4c68c144bf5a7753c403d28db22e6b896269651 /js | |
parent | f1efa0991a07b8d382370d80a269de597e378d00 (diff) | |
parent | 333942898782f3e197a660eb841ccbd296a83475 (diff) | |
download | volse-hubzilla-d32edf83d3fb3bb4bebdc9d24001eff000c2a660.tar.gz volse-hubzilla-d32edf83d3fb3bb4bebdc9d24001eff000c2a660.tar.bz2 volse-hubzilla-d32edf83d3fb3bb4bebdc9d24001eff000c2a660.zip |
Merge pull request #61 from fabrixxm/master
fix to variable rexexp and mentions 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"); }); } |