aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_filestorage.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-15 16:51:35 -0700
committerfriendica <info@friendica.com>2015-03-15 16:51:35 -0700
commitd7a6dae3cbf88cfc579674caa694a01f4e54ab89 (patch)
tree8d76a3635a61fedf57ff74442311bb3453d84a26 /view/js/mod_filestorage.js
parent6da40fc559f540e67802f771411aa9f85dc8d64d (diff)
parente780dada832acbb9d46870178f9a6488f4e265d9 (diff)
downloadvolse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.tar.gz
volse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.tar.bz2
volse-hubzilla-d7a6dae3cbf88cfc579674caa694a01f4e54ab89.zip
Merge https://github.com/friendica/red into pending_merge
Diffstat (limited to 'view/js/mod_filestorage.js')
-rw-r--r--view/js/mod_filestorage.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/view/js/mod_filestorage.js b/view/js/mod_filestorage.js
index bee37767f..df04b4a83 100644
--- a/view/js/mod_filestorage.js
+++ b/view/js/mod_filestorage.js
@@ -1,5 +1,7 @@
+/**
+ * JavaScript used by mod/filestorage
+ */
$(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() {
@@ -7,11 +9,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