Skip to content

Commit

Permalink
Actualización en el switch de LA IMAGEN.
Browse files Browse the repository at this point in the history
Ahora el estado del switch de la imagen de la esquina se almacena en el localStorage del navegador. Código similar al de los números, pero sin el setItem (si no es necesario, se eliminará del otro switch también).
  • Loading branch information
alex-ui committed Feb 23, 2024
1 parent d987122 commit 3c1cb42
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,18 @@ <h3 style="text-align: center;">HackUDC 2024</h3>
image.style.display = "block";
}
}

// Obtiene el estado del switch del localStorage para mostrar u ocultar la imagen de ayuda (o "imagenDeLaEsquina")
// No es necesario el setItem para guardar el dato
document.addEventListener('DOMContentLoaded', function() {
var imageToggleState = localStorage.getItem('imageToggleState');
var image = document.getElementById("imagenDeLaEsquina");
if (imageToggleState === 'false') {
image.style.display = 'none';
} else {
image.style.display = 'block';
}
});
</script>

</body>
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ function showTileNumbers() {
const switchElement = document.getElementById('show-numbers');
localStorage.setItem('showNumbers', switchElement.checked.toString()); // Convierte el booleano del switch antes de guardar el dato en el caché del navegador.

// Update tile numbers based on the switch state
// Condición para mostrar los números (no es necesario el else).
if (switchElement.checked) {
showTileNumbers();
}
Expand Down

0 comments on commit 3c1cb42

Please sign in to comment.