diff options
author | pafcu <pafcu@iki.fi> | 2015-01-12 21:07:54 +0200 |
---|---|---|
committer | pafcu <pafcu@iki.fi> | 2015-01-12 21:07:54 +0200 |
commit | a0134de28abdaf820d14a161a05578c16911cdbd (patch) | |
tree | b2b71519398dbd68e9f641719bc334d087d267a3 /view/js/mod_photos.js | |
parent | 55eb6be30885919882f05162f53ea2216ecffac3 (diff) | |
parent | adc9564b5cc5f1fc410220514285927052cdfe4a (diff) | |
download | volse-hubzilla-a0134de28abdaf820d14a161a05578c16911cdbd.tar.gz volse-hubzilla-a0134de28abdaf820d14a161a05578c16911cdbd.tar.bz2 volse-hubzilla-a0134de28abdaf820d14a161a05578c16911cdbd.zip |
Merge pull request #844 from pafcu/moretagging
Refactor mention code to make it more reusable
Diffstat (limited to 'view/js/mod_photos.js')
-rw-r--r-- | view/js/mod_photos.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index 4c724c5e1..0526fd1e6 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -4,7 +4,7 @@ var ispublic = aStr['everybody']; $(document).ready(function() { $(document).ready(function() { $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', false, function(data) { - $("#photo-edit-newtag").val('@' + data.name.replace(' ','_')); // TODO: Get rid of underscore + $("#photo-edit-newtag").val('@' + data.name); }); }); |