diff options
author | friendica <info@friendica.com> | 2014-01-29 21:29:48 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-29 21:29:48 -0800 |
commit | 080928f214c9f83879f1578e05baa6032fa2b7b8 (patch) | |
tree | aa53cc5185c5b1a58f0bb8e30609da6bcdc0b5ad /view/js/mod_filestorage.php | |
parent | 7b609782623d91c2bdf81c04cd801aaae927e9fa (diff) | |
download | volse-hubzilla-080928f214c9f83879f1578e05baa6032fa2b7b8.tar.gz volse-hubzilla-080928f214c9f83879f1578e05baa6032fa2b7b8.tar.bz2 volse-hubzilla-080928f214c9f83879f1578e05baa6032fa2b7b8.zip |
chatroom management front-end stuff
Diffstat (limited to 'view/js/mod_filestorage.php')
-rw-r--r-- | view/js/mod_filestorage.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/view/js/mod_filestorage.php b/view/js/mod_filestorage.php new file mode 100644 index 000000000..82957ae44 --- /dev/null +++ b/view/js/mod_filestorage.php @@ -0,0 +1,16 @@ +$(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'); +}); |