mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-12 00:45:47 +01:00
Fixed line spacing/tabbing
This commit is contained in:
@@ -180,17 +180,17 @@ define(function() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
bootbox.confirm('Are you sure you want to remove this user?', function(confirm) {
|
bootbox.confirm('Are you sure you want to remove this user?', function(confirm) {
|
||||||
if (confirm){
|
if (confirm){
|
||||||
socket.emit('admin.groups.leave', {
|
socket.emit('admin.groups.leave', {
|
||||||
gid: gid,
|
gid: gid,
|
||||||
uid: uid
|
uid: uid
|
||||||
}, function(err, data) {
|
}, function(err, data) {
|
||||||
if (!err) {
|
if (!err) {
|
||||||
groupMembersEl.find('li[data-uid="' + uid + '"]').remove();
|
groupMembersEl.find('li[data-uid="' + uid + '"]').remove();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user