mirror of
https://github.com/nextcloud/server.git
synced 2026-03-01 21:10:36 -05:00
Drop the hide and show of new users in user list
* causes the first load after the initial load to hide some users in the viewport and showing them again, but with a scrolled up viewport * causes higher load for nearly never visible effects * fixes #12962
This commit is contained in:
parent
3465604cf9
commit
1b81339dfd
1 changed files with 0 additions and 7 deletions
|
|
@ -404,7 +404,6 @@ var UserList = {
|
|||
return true;
|
||||
}
|
||||
var $tr = UserList.add(user, user.lastLogin, false, user.backend);
|
||||
$tr.addClass('appear transparent');
|
||||
trs.push($tr);
|
||||
loadedUsers++;
|
||||
});
|
||||
|
|
@ -419,12 +418,6 @@ var UserList = {
|
|||
$userList.siblings('.loading').remove();
|
||||
}
|
||||
UserList.offset += loadedUsers;
|
||||
// animate
|
||||
setTimeout(function() {
|
||||
for (var i = 0; i < trs.length; i++) {
|
||||
trs[i].removeClass('transparent');
|
||||
}
|
||||
}, 0);
|
||||
}).always(function() {
|
||||
UserList.updating = false;
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue