diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/main.js | 10 |
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'); + }); + } + |