diff options
author | friendica <info@friendica.com> | 2015-03-15 16:51:35 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-15 16:51:35 -0700 |
commit | d7a6dae3cbf88cfc579674caa694a01f4e54ab89 (patch) | |
tree | 8d76a3635a61fedf57ff74442311bb3453d84a26 /view/js/mod_chat.js | |
parent | 6da40fc559f540e67802f771411aa9f85dc8d64d (diff) | |
parent | e780dada832acbb9d46870178f9a6488f4e265d9 (diff) | |
download | volse-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_chat.js')
-rw-r--r-- | view/js/mod_chat.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/view/js/mod_chat.js b/view/js/mod_chat.js index 88c1cf7d8..6c432742f 100644 --- a/view/js/mod_chat.js +++ b/view/js/mod_chat.js @@ -1,5 +1,8 @@ -$(document).ready(function() { +/** + * JavaScript for mod/chat + */ +$(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,10 +10,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 |