diff options
author | zotlabs <mike@macgirvin.com> | 2018-09-18 19:52:10 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-09-18 19:52:10 -0700 |
commit | 7756773683b33ad4c8ccd8d1dc4b82104b2557f9 (patch) | |
tree | c834dde5dcc21f4947415f2020f9747ab509c7ce /view | |
parent | dfdf11d461d9c72fa4fb54fd28949af2a90209b3 (diff) | |
download | volse-hubzilla-7756773683b33ad4c8ccd8d1dc4b82104b2557f9.tar.gz volse-hubzilla-7756773683b33ad4c8ccd8d1dc4b82104b2557f9.tar.bz2 volse-hubzilla-7756773683b33ad4c8ccd8d1dc4b82104b2557f9.zip |
missing autocomplete (e.g. mentions) in mod_photos comments
Diffstat (limited to 'view')
-rw-r--r-- | view/js/mod_photos.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index bf926c692..e2c5f4e09 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -11,8 +11,9 @@ $(document).ready(function() { $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'a', false, function(data) { $("#photo-edit-newtag").val('@' + data.name); }); - - $('textarea').bbco_autocomplete('bbcode'); + + $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1"); +// $('textarea').bbco_autocomplete('bbcode'); showHideBodyTextarea(); }); |