diff options
author | friendica <info@friendica.com> | 2015-03-15 16:51:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-15 16:51:35 -0700 |
commit | d7a6dae3cbf88cfc579674caa694a01f4e54ab89 (patch) | |
tree | 8d76a3635a61fedf57ff74442311bb3453d84a26 /view/js/mod_photos.js | |
parent | 6da40fc559f540e67802f771411aa9f85dc8d64d (diff) | |
parent | e780dada832acbb9d46870178f9a6488f4e265d9 (diff) | |
download | volse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.tar.gz volse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.tar.bz2 volse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.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.js | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index 0526fd1e6..b254370c1 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -1,12 +1,16 @@ +/** + * JavaScript used by mod/photos + */ -var ispublic = aStr['everybody']; +// is this variable used anywhere? +var ispublic = aStr.everybody; $(document).ready(function() { - $(document).ready(function() { + $(document).ready(function() { $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', false, function(data) { $("#photo-edit-newtag").val('@' + data.name); }); - }); + }); $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { var selstr; @@ -15,10 +19,9 @@ $(document).ready(function() { $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock'); $('#jot-public').hide(); }); - if(selstr == null) { + if(selstr === null) { $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock'); $('#jot-public').show(); } - }).trigger('change'); -}); +});
\ No newline at end of file |