Skip to content

Commit

Permalink
Update main.js removi o focus
Browse files Browse the repository at this point in the history
retirei o focus após clicar num botão pois estava abrindo a teclado no mobile.
  • Loading branch information
Fabricio-P-Viana authored Feb 23, 2024
1 parent 91d729e commit 7e2630e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ function Calculadora() {
}};
this.addNumDisplay = el => {
this.display.value += el.innerText;
this.display.focus();
};
this.clear = () => this.display.value = '';
this.del = () => this.display.value = this.display.value.slice(0, -1);
Expand Down

0 comments on commit 7e2630e

Please sign in to comment.