aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_photos.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-07 14:39:07 -0800
committerfriendica <info@friendica.com>2015-01-07 14:39:07 -0800
commit087d6744fcd0c77cf3415b4ce6eaf50cdb63b4ef (patch)
treef731ec2ef4b1977306e18c5dc0491a84f42e423f /view/js/mod_photos.js
parentce953e2f41c2bf8abdda2584dd84c2bd0175f609 (diff)
parent8771dee9cf90b9c8f76c1856ea7e5107aab5840e (diff)
downloadvolse-hubzilla-087d6744fcd0c77cf3415b4ce6eaf50cdb63b4ef.tar.gz
volse-hubzilla-087d6744fcd0c77cf3415b4ce6eaf50cdb63b4ef.tar.bz2
volse-hubzilla-087d6744fcd0c77cf3415b4ce6eaf50cdb63b4ef.zip
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'view/js/mod_photos.js')
-rw-r--r--view/js/mod_photos.js18
1 files changed, 5 insertions, 13 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js
index 0a64f8102..4c724c5e1 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', false, function(data) {
+ $("#photo-edit-newtag").val('@' + data.name.replace(' ','_')); // TODO: Get rid of underscore
+ });
+ });
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;