From: Friendika Date: Tue, 12 Apr 2011 22:45:41 +0000 (-0700) Subject: show busy cursor during ajax call X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=38014e9b4d720a6a18e87b3c10f71bfa2e7038d4;p=friendica.git show busy cursor during ajax call --- diff --git a/include/main.js b/include/main.js index 1710115af8..65bd95c72a 100644 --- a/include/main.js +++ b/include/main.js @@ -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'); }); }