aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_filestorage.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-11 21:45:20 -0700
committerfriendica <info@friendica.com>2014-03-11 21:45:20 -0700
commit3f337dad2c783e62338a88887d1ef3d7754da410 (patch)
treec0b1c8f144b3fa8eef5697825f8baf6ab1ea2229 /view/js/mod_filestorage.php
parentd7dcf463ed887951930a1fb5b0360406542dedd7 (diff)
downloadvolse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.tar.gz
volse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.tar.bz2
volse-hubzilla-3f337dad2c783e62338a88887d1ef3d7754da410.zip
file had wrong extension
Diffstat (limited to 'view/js/mod_filestorage.php')
-rw-r--r--view/js/mod_filestorage.php16
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');
-});