Fixed line spacing/tabbing

v1.18.x
Josh Rickers 11 years ago
parent 55b0270b34
commit f9e6fab3ea

@ -180,17 +180,17 @@ define(function() {
return;
}
bootbox.confirm('Are you sure you want to remove this user?', function(confirm) {
if (confirm){
socket.emit('admin.groups.leave', {
gid: gid,
uid: uid
}, function(err, data) {
if (!err) {
groupMembersEl.find('li[data-uid="' + uid + '"]').remove();
}
});
}
});
if (confirm){
socket.emit('admin.groups.leave', {
gid: gid,
uid: uid
}, function(err, data) {
if (!err) {
groupMembersEl.find('li[data-uid="' + uid + '"]').remove();
}
});
}
});
}
});
});

Loading…
Cancel
Save