aboutsummaryrefslogtreecommitdiffstats
path: root/include/main.js
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-04-12 21:21:33 -0700
committerFriendika <info@friendika.com>2011-04-12 21:21:33 -0700
commite8a0dd40b273df2dc22e10d91fc44fe464b408e7 (patch)
tree243fe266e8deca859f1d858bbeeaeeee9b187987 /include/main.js
parentf04e2e70447e433bdc6acb2094fd988a995d1c08 (diff)
downloadvolse-hubzilla-e8a0dd40b273df2dc22e10d91fc44fe464b408e7.tar.gz
volse-hubzilla-e8a0dd40b273df2dc22e10d91fc44fe464b408e7.tar.bz2
volse-hubzilla-e8a0dd40b273df2dc22e10d91fc44fe464b408e7.zip
profile visibility editor
Diffstat (limited to 'include/main.js')
-rw-r--r--include/main.js10
1 files changed, 9 insertions, 1 deletions
diff --git a/include/main.js b/include/main.js
index 65bd95c72..1c695265d 100644
--- a/include/main.js
+++ b/include/main.js
@@ -283,7 +283,15 @@
$('body .fakelink').css('cursor', 'wait');
$.get('group/' + gid + '/' + cid, function(data) {
$('#group-update-wrapper').html(data);
- $('#group-update2-wrapper').html(data);
$('body .fakelink').css('cursor', 'auto');
});
}
+
+ function profChangeMember(gid,cid) {
+ $('body .fakelink').css('cursor', 'wait');
+ $.get('profperm/' + gid + '/' + cid, function(data) {
+ $('#prof-update-wrapper').html(data);
+ $('body .fakelink').css('cursor', 'auto');
+ });
+ }
+