diff options
author | Paolo T <tuscanhobbit@users.noreply.github.com> | 2015-03-22 16:34:40 +0100 |
---|---|---|
committer | Paolo T <tuscanhobbit@users.noreply.github.com> | 2015-03-22 16:34:40 +0100 |
commit | 82fb1ca0caaae72b77b641d22e51d5ae1b188183 (patch) | |
tree | a2ecee4e65bc80300c62b5b327965b8118117ad3 /view/js/mod_photos.js | |
parent | ff5c3b009fa25e87e294cd458d3de4b677270c64 (diff) | |
parent | e345d6793d5f6910dd230f661ca5d1a837b1b504 (diff) | |
download | volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.tar.gz volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.tar.bz2 volse-hubzilla-82fb1ca0caaae72b77b641d22e51d5ae1b188183.zip |
Merge pull request #8 from friendica/master
merging red master into nuvola.red
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 |