Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristopher Castro committed Dec 5, 2024
1 parent 80793b2 commit b0c3615
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions privado/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1992,19 +1992,19 @@ $( document ).ready(function() {
let alternativas = ["C. Luteo presente","C. Luteo ausente"]

if (alternativas.includes(this.value) == true){
the("foliDereMay").classList.add("disabled")
the("foliDereMay").setAttribute("disabled", "true");
} else {
the("foliDereMay").classList.remove("disabled")
the("foliDereMay").removeAttribute("disabled", "true");
}
}

the("folicIzq").onchange = function(){
let alternativas = ["C. Luteo presente","C. Luteo ausente"]

if (alternativas.includes(this.value) == true){
the("foliIzqMay").classList.add("disabled")
the("foliIzqMay").setAttribute("disabled", "true");
} else {
the("foliIzqMay").classList.remove("disabled")
the("foliIzqMay").removeAttribute("disabled", "true");
}
}
});
Expand Down

0 comments on commit b0c3615

Please sign in to comment.