aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-02-08 17:21:32 -0800
committerzotlabs <mike@macgirvin.com>2017-02-08 17:21:32 -0800
commit91819bfc2d475e1b16d3f5e9ca685ca2531a9084 (patch)
tree0a139ef141996efc1dedae5476b4f6fb8ddde981 /view/js
parent6ee691e0190a7d6488888d2fd5009324e3a88f74 (diff)
downloadvolse-hubzilla-91819bfc2d475e1b16d3f5e9ca685ca2531a9084.tar.gz
volse-hubzilla-91819bfc2d475e1b16d3f5e9ca685ca2531a9084.tar.bz2
volse-hubzilla-91819bfc2d475e1b16d3f5e9ca685ca2531a9084.zip
bringer - all basic functionality is implemented
Diffstat (limited to 'view/js')
-rw-r--r--view/js/mod_settings.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js
index db321ae70..5c729fa48 100644
--- a/view/js/mod_settings.js
+++ b/view/js/mod_settings.js
@@ -17,6 +17,16 @@ $(document).ready(function() {
else
$('#advanced-perm').hide();
});
+
+ $('#id_permcat_list').change(function() {
+ $('.loading-role-rotator').spin(true);
+ var permName = $('#id_permcat').val();
+ loadPermcat(permName);
+ });
+
+
+
+
});
@@ -137,3 +147,25 @@ function channel_privacy_macro(n) {
$('#id_profile_in_directory').val(1);
}
}
+
+
+
+function loadPermcat(name) {
+
+ if(! name)
+ name = 'default';
+
+ $('.abook-edit-me').each(function() {
+ if(! $(this).is(':disabled'))
+ $(this).removeAttr('checked');
+ });
+
+ $.get('permcat/' + name, function(data) {
+ $(data.perms).each(function() {
+ if(this.value)
+ $('#me_id_perms_' + this.name).attr('checked','checked');
+ });
+ $('.loading-role-rotator').spin(false);
+ });
+}
+