Fixed line spacing/tabbing

This commit is contained in:
Josh Rickers
2014-01-21 20:40:55 +00:00
parent 55b0270b34
commit f9e6fab3ea

View File

@@ -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();
} }
}); });
} }
}); });
} }
}); });
}); });