Skip to content

Commit

Permalink
Modifie title and description text
Browse files Browse the repository at this point in the history
Depending on the type of calculator chosen, it changes the title and description of the chosen calculator.
  • Loading branch information
mr-soulfox authored Mar 27, 2021
1 parent 36884a2 commit 7547ea1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<header>
<div class="headerContainer">

<h1 id="title">Calculadora padrão</h1>
<h1 id="typeCalcTitle">Calculadora padrão</h1>

<h2 id="description">é uma calculadora com as funçoes padrões</h2>
<h2 id="typeCalcDescription">É uma calculadora com as funções padrões</h2>

</div>
</header>
Expand Down
10 changes: 10 additions & 0 deletions src/changeCalculator.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ function changeCalculator() {
const container = document.getElementById('calcContainer')
const menuButton = document.getElementById('menuButton')
const menu = document.getElementById('menu')
const title = document.getElementById('typeCalcTitle')
const description = document.getElementById('typeCalcDescription')


const inputs = document.getElementById('inputs')
Expand All @@ -30,6 +32,10 @@ function changeCalculator() {
//mudando o titulo da pagina
document.title = 'Calculadora | data'

//mudando titulo e descrição da Calculadora
title.innerText = 'Calculadora de datas'
description.innerText = 'É uma calculadora com a função de mostrar os dias, meses e anos de diferença'

} else {
//sumindo com a interface padrão
calcElement.style.visibility = 'visible'
Expand All @@ -47,6 +53,10 @@ function changeCalculator() {
//mudando o titulo da pagina
document.title = 'Calculadora | padrão'

//mudando titulo e descrição da calculadora
title.innerText = 'Calculadora padrão'
description.innerText = 'É uma calculadora com as funções padrões'

}

}

0 comments on commit 7547ea1

Please sign in to comment.