aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_mitem.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_mitem.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_mitem.js')
-rw-r--r--view/js/mod_mitem.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/view/js/mod_mitem.js b/view/js/mod_mitem.js
index 979a15297..e883763df 100644
--- a/view/js/mod_mitem.js
+++ b/view/js/mod_mitem.js
@@ -1,11 +1,12 @@
+/**
+ * JavaScript used by mod/mitem.
+ */
$(document).ready(function() {
-
- $("a#settings-default-perms-menu").colorbox({
- 'inline' : true,
- 'transition' : 'elastic'
+ $("a#settings-default-perms-menu").colorbox({
+ 'inline' : true,
+ 'transition' : 'elastic'
});
-
$('#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() {
@@ -13,10 +14,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