diff options
Diffstat (limited to 'view')
-rw-r--r-- | view/js/mod_photos.js | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index 0a64f8102..676f5e8ef 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -2,19 +2,11 @@ var ispublic = aStr['everybody']; $(document).ready(function() { - - var a; - a = $("#photo-edit-newtag").autocomplete({ - serviceUrl: baseurl + '/acl', - minChars: 2, - width: 250, - id: 'newtag-ac', - onSelect: function(value,data) { - $("#photo-edit-newtag").val(data); - }, - }); - a.setOptions({ params: { type: 'p' }}); - + $(document).ready(function() { + $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', function(data) { + $("#photo-edit-newtag").val('@' + data.name.replace(' ','_'); // Is the underscore replacement still needed? + }); + }); $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { var selstr; |