Merge pull request #9390 from owncloud/fix-9368

Revert 'hides table header while users load.'
This commit is contained in:
Jan-Christoph Borchardt 2014-07-03 13:00:40 +02:00
commit dc15223edf
1 changed files with 0 additions and 2 deletions

View File

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