зеркало из https://github.com/nextcloud/server.git
fix grouplist behaviour (blank after filtering)
This commit is contained in:
Родитель
e235de98e6
Коммит
39982c2aea
|
@ -107,6 +107,7 @@ GroupList = {
|
|||
}
|
||||
else {
|
||||
var $li = GroupList.addGroup(group.name, group.usercount);
|
||||
|
||||
$li.addClass('appear transparent');
|
||||
lis.push($li);
|
||||
}
|
||||
|
@ -119,7 +120,9 @@ GroupList = {
|
|||
GroupList.noMoreEntries = true;
|
||||
}
|
||||
_.defer(function () {
|
||||
$(lis).removeClass('transparent');
|
||||
$(lis).each(function () {
|
||||
this.removeClass('transparent')
|
||||
});
|
||||
});
|
||||
}
|
||||
GroupList.updating = false;
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<!-- Everyone -->
|
||||
<li data-gid="" class="isgroup">
|
||||
<a href="#">
|
||||
<span>
|
||||
<span class="groupname">
|
||||
<?php p($l->t('Everyone')); ?>
|
||||
</span>
|
||||
</a>
|
||||
|
|
Загрузка…
Ссылка в новой задаче