mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 20:41:17 +01:00
fix member IS
This commit is contained in:
@@ -108,7 +108,7 @@ define('forum/groups/memberlist', ['api', 'bootbox', 'alerts'], function (api, b
|
||||
}
|
||||
|
||||
function handleMemberInfiniteScroll() {
|
||||
$('[component="groups/members"] tbody').on('scroll', function () {
|
||||
$('[component="groups/members"]').on('scroll', function () {
|
||||
const $this = $(this);
|
||||
const bottom = ($this[0].scrollHeight - $this.innerHeight()) * 0.9;
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="overflow-auto" style="max-height: 500px;">
|
||||
<table component="groups/members" class="table table-hover" data-nextstart="{group.membersNextStart}">
|
||||
<div component="groups/members" data-nextstart="{group.membersNextStart}" class="overflow-auto" style="max-height: 500px;">
|
||||
<table class="table table-hover">
|
||||
<tbody>
|
||||
{{{ each group.members }}}
|
||||
<tr data-uid="{group.members.uid}">
|
||||
|
||||
Reference in New Issue
Block a user