Skip to content

Commit

Permalink
Hot Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosferreyra committed Jun 25, 2024
1 parent 6f7ec45 commit 54557a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const DesencriptarBtn = document.querySelector('.DesencriptarBtn');
const FinalTxt = document.querySelector('.FinalText');

const RightContainer = document.querySelector('.RightContainer');
const Persona = document.querySelector('.Persona');
const Doll = document.querySelector('.Doll');
const RightInfo = document.querySelector('.RightInfo');
const CopyBtn = document.querySelector('.CopyBtn');

Expand Down Expand Up @@ -41,7 +41,7 @@ EncriptarBtn.addEventListener("click", () => {

const EncryptedTxt = Encriptar(Txt);

Persona.style.display = 'none';
Doll.style.display = 'none';
RightInfo.style.display = 'none';
CopyBtn.style.display = 'block';
RightContainer.classList.add('Fixed');
Expand All @@ -64,7 +64,7 @@ DesencriptarBtn.addEventListener("click", () => {

const DecryptedTxt = Desencriptar(Txt);

Persona.style.display = 'none';
Doll.style.display = 'none';
RightInfo.style.display = 'none';
CopyBtn.style.display = 'block';
RightContainer.classList.add('Fixed');
Expand Down

0 comments on commit 54557a2

Please sign in to comment.