diff options
author | Friendika <info@friendika.com> | 2011-06-01 22:06:53 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-01 22:06:53 -0700 |
commit | 55e727de648cc932fb849f01c5dbda350ad7ad5e (patch) | |
tree | 12c0e94279a8559ed861b9fcd0e90e80884fb11f /mod/photos.php | |
parent | 1e0d3173f8ca37eb448d9a45a0f1235da43e84a1 (diff) | |
download | volse-hubzilla-55e727de648cc932fb849f01c5dbda350ad7ad5e.tar.gz volse-hubzilla-55e727de648cc932fb849f01c5dbda350ad7ad5e.tar.bz2 volse-hubzilla-55e727de648cc932fb849f01c5dbda350ad7ad5e.zip |
make 'visible to everybody' warning toggle correctly in photos and settings
Diffstat (limited to 'mod/photos.php')
-rw-r--r-- | mod/photos.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/mod/photos.php b/mod/photos.php index 71d00ed25..926b33dbe 100644 --- a/mod/photos.php +++ b/mod/photos.php @@ -45,6 +45,32 @@ function photos_init(&$a) { if(! x($a->page,'aside')) $a->page['aside'] = ''; $a->page['aside'] .= $o; + + + $a->page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "';" ; + + $a->page['htmlhead'] .= <<< EOT + + $(document).ready(function() { + + $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { + var selstr; + $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { + selstr = $(this).text(); + $('#jot-perms-icon').removeClass('unlock').addClass('lock'); + $('#jot-public').hide(); + }); + if(selstr == null) { + $('#jot-perms-icon').removeClass('lock').addClass('unlock'); + $('#jot-public').show(); + } + + }).trigger('change'); + + }); + + </script> +EOT; } return; |