Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function perfilUsuario() {
- nombreUsuarioTxt.innerHTML = currentUser?.nombre;
- }
- function abrirPerfil() {
- optionsPerfil.classList.remove("cerrado");
- optionsPerfil.classList.add("abierto");
- }
- function cerrarPerfil() {
- optionsPerfil.classList.add("cerrado");
- optionsPerfil.classList.remove("abierto");
- }
- document.addEventListener("click", (event) => {
- // para cerrar
- if (
- event.target.id != "fotoPerfil" ||
- optionsPerfil.classList.contains("abierto")
- ) {
- cerrarPerfil();
- console.log("cerrar");
- } else {
- // para abrir
- abrirPerfil();
- console.log("abrir");
- }
- });
- cerrarSesionBtn.addEventListener("click", () => {
- localStorage.removeItem("currentUser");
- window.location.assign("../../index.html");
- });
- if (!currentUser) {
- window.location.assign("../../index.html");
- }
- perfilUsuario();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement