show busy cursor during ajax call

This commit is contained in:
Friendika 2011-04-12 15:45:41 -07:00
parent e01bc60577
commit 38014e9b4d
1 changed files with 2 additions and 1 deletions

View File

@ -280,9 +280,10 @@
}
function groupChangeMember(gid,cid) {
$('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');
});
}