Ao clicar no botao a mensagem de erro nao e exibida.
var btnAdc = document.querySelector("#btnAdc");
btnAdc.addEventListener("click", function(){
var xhr = new XMLHttpRequest();
xhr.open("get", "https://api-pacientes.herokuapp.com/paciente1s");
xhr.addEventListener("load", function(){
var erroAjax = document.querySelector("#erro-ajax");
// console.log(erroAjax);
if(xhr.status == 200){
var resposta = xhr.responseText;
var jsonPacientes = JSON.parse(resposta);
jsonPacientes.forEach(function (jsonPaciente) {
adicionaPaciente(jsonPaciente);
});
}else{
// console.log(xhr.status);
// console.log(xhr.responseText);
erroAjax.classList.remove("invisivel");
}
});
xhr.send();
});