diff options
Diffstat (limited to 'view/js/mod_filestorage.php')
-rw-r--r-- | view/js/mod_filestorage.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/view/js/mod_filestorage.php b/view/js/mod_filestorage.php deleted file mode 100644 index 82957ae44..000000000 --- a/view/js/mod_filestorage.php +++ /dev/null @@ -1,16 +0,0 @@ -$(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'); -}); |