aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_chat.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_chat.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_chat.js')
-rw-r--r--view/js/mod_chat.js10
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