From b8d0f2c82fece5427fd980b181cd1c3c12c3f00f Mon Sep 17 00:00:00 2001 From: Rafael Nascimento de Carvalho Date: Tue, 16 Oct 2018 11:04:29 -0300 Subject: [PATCH] Add translation for titles [Portuguese] (#19264) --- .../jquery/clone-an-element-using-jquery.portuguese.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md b/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md index 6558b839ce..0905359879 100644 --- a/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md +++ b/curriculum/challenges/portuguese/03-front-end-libraries/jquery/clone-an-element-using-jquery.portuguese.md @@ -6,14 +6,14 @@ videoUrl: '' localeTitle: Clone um elemento usando jQuery --- -## Description +## Descrição
Além de mover elementos, você também pode copiá-los de um lugar para outro. jQuery tem uma função chamada clone() que faz uma cópia de um elemento. Por exemplo, se quiséssemos copiar o target2 do nosso target2 da left-well para o nosso da right-well , $("#target2").clone().appendTo("#right-well"); : $("#target2").clone().appendTo("#right-well"); Você notou que isso envolve juntar duas funções jQuery? Isso é chamado de function chaining e é uma maneira conveniente de fazer as coisas com o jQuery. Clone seu elemento target5 e anexe-o à sua left-well .
-## Instructions +## Intruções
-## Tests +## Testes
```yml @@ -29,7 +29,7 @@ tests:
-## Challenge Seed +## Desafio
@@ -77,7 +77,7 @@ tests:
-## Solution +## Solução
```js