Merge pull request #9330 from owncloud/jumpingheader

Hides table header while users load in User Management
This commit is contained in:
icewind1991 2014-07-01 15:43:31 +02:00
commit ff416eaa57

View file

@ -282,6 +282,7 @@ var UserList = {
if (UserList.updating) {
return;
}
$userList.css('display', 'none');
$userList.siblings('.loading').css('visibility', 'visible');
UserList.updating = true;
if(gid === undefined) {
@ -310,6 +311,7 @@ var UserList = {
});
if (result.data.length > 0) {
UserList.doSort();
$userList.css('display', 'block');
$userList.siblings('.loading').css('visibility', 'hidden');
}
else {