diff options
Diffstat (limited to 'files/fr/web/api/window/back')
-rw-r--r-- | files/fr/web/api/window/back/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/files/fr/web/api/window/back/index.html b/files/fr/web/api/window/back/index.html index 653d5b9d61..9743d49f37 100644 --- a/files/fr/web/api/window/back/index.html +++ b/files/fr/web/api/window/back/index.html @@ -21,9 +21,9 @@ translation_of: Web/API/Window/back <p><strong>Note:</strong> Utilisez plutôt la méthode standard {{domxref("history.back")}}.</p> </div> -<h2 id="Syntax" name="Syntax">Syntaxe</h2> +<h2 id="Syntax">Syntaxe</h2> -<pre class="syntaxbox notranslate">window.back();</pre> +<pre class="syntaxbox">window.back();</pre> <h3 id="Paramètres">Paramètres</h3> @@ -37,7 +37,7 @@ translation_of: Web/API/Window/back <p>Cet exemple simple gère un clic sur un bouton "Retour" en rappelant <code>back()</code>.</p> -<pre class="brush:js notranslate">function boutonRetour() { +<pre class="brush:js">function boutonRetour() { if (peutRevenirEnArriere) { window.back(); } |