aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_filestorage.js
diff options
context:
space:
mode:
authorRedMatrix <info@friendica.com>2015-03-16 10:51:15 +1100
committerRedMatrix <info@friendica.com>2015-03-16 10:51:15 +1100
commite780dada832acbb9d46870178f9a6488f4e265d9 (patch)
tree4dafc508962ed625ebf8a7f462cf15d59c8e2f4c /view/js/mod_filestorage.js
parentfdcbb61bcb61a980a7a9171432498a9cac6e0965 (diff)
parent864116805b7adf8e82be582c2df8524c44a829fd (diff)
downloadvolse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.tar.gz
volse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.tar.bz2
volse-hubzilla-e780dada832acbb9d46870178f9a6488f4e265d9.zip
Merge pull request #931 from dawnbreak/master
Some JavaScript cleanups.
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