Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-11 10:11:10 +02:00
committed by GitHub
parent 93c556d390
commit ab5402b470
5 changed files with 46 additions and 33 deletions

View File

@ -1,5 +1,12 @@
function cambiarCSS(nuevo){
//let css = true;
//window.location.href = window.location.href + "?css=" + css;
let highContrast;
if(highContrast === true){
highContrast = false;
} else {
highContrast = true;
}
//window.location.href += "?highContrast=" + highContrast;
document.getElementById('estilo').setAttribute('href', nuevo);
}