profile visibility editor

This commit is contained in:
Friendika 2011-04-12 21:21:33 -07:00
parent f04e2e7044
commit e8a0dd40b2
6 changed files with 81 additions and 14 deletions

View file

@ -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');
});
}