diff options
author | redmatrix <git@macgirvin.com> | 2016-07-13 17:51:19 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-07-13 17:51:19 -0700 |
commit | f60a0c5ce050febb0b200938eb51d88cf563b88f (patch) | |
tree | ceaab889a4fbb584ec37969087560a115ff649ca /view/js | |
parent | 18565600b2b9e36f1792bf29d5575f681fafc0b5 (diff) | |
download | volse-hubzilla-f60a0c5ce050febb0b200938eb51d88cf563b88f.tar.gz volse-hubzilla-f60a0c5ce050febb0b200938eb51d88cf563b88f.tar.bz2 volse-hubzilla-f60a0c5ce050febb0b200938eb51d88cf563b88f.zip |
document mod_acl a bit better and try to remove some redundancies and consolidate the various options
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/autocomplete.js | 2 | ||||
-rw-r--r-- | view/js/mod_mail.js | 2 | ||||
-rw-r--r-- | view/js/mod_photos.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 59a9ed355..63f1e9a13 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -1,5 +1,5 @@ /** - * Red people autocomplete + * general autocomplete support * * require jQuery, jquery.textcomplete */ diff --git a/view/js/mod_mail.js b/view/js/mod_mail.js index 3e55c8aeb..46574a63d 100644 --- a/view/js/mod_mail.js +++ b/view/js/mod_mail.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#recip").name_autocomplete(baseurl + '/acl', '', false, function(data) { + $("#recip").name_autocomplete(baseurl + '/acl', 'm', false, function(data) { $("#recip-complete").val(data.xid); }); $(".autotime").timeago() diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index 006be5f23..e3df3ca68 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -3,7 +3,7 @@ */ $(document).ready(function() { - $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', false, function(data) { + $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'a', false, function(data) { $("#photo-edit-newtag").val('@' + data.name); }); |