Skip to content

Commit

Permalink
Fix #13734 for fr (#15793)
Browse files Browse the repository at this point in the history
* Fixes #13734
* Fix img compression
  • Loading branch information
SphinxKnight authored Sep 20, 2023
1 parent d689959 commit 8ad29f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 8 additions & 6 deletions files/fr/web/api/window/confirm/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
title: Window.confirm()
title: "Window : méthode confirm()"
slug: Web/API/Window/confirm
l10n:
sourceCommit: 70b1b8ac18d3e3346645d4ee5155f654c83d96e0
---

{{ApiRef("Window")}}
Expand All @@ -11,8 +13,8 @@ Sous certaines conditions, par exemple au changement d'onglet, le navigateur pou

## Syntaxe

```js
confirm(message);
```js-nolint
confirm(message)
```

### Paramètres
Expand All @@ -27,8 +29,8 @@ Un booléen qui indique si l'option « OK » (`true`) ou « Annul
## Exemples

```js
if (window.confirm("Do you really want to leave?")) {
window.open("exit.html", "Thanks for Visiting!");
if (window.confirm("Souhaitez-vous vraiment quitter le site ?")) {
window.open("exit.html", "Merci de votre visite !");
}
```

Expand All @@ -42,7 +44,7 @@ Ces boîtes de dialogue sont des fenêtres modales qui empêchent d'accéder au

Il y a également d'autres raisons [d'éviter les boîtes de dialogue pour demander une confirmation](https://alistapart.com/article/neveruseawarning/).

Une autre méthode consiste à utiliser l'élément [`<dialog>`](/fr/docs/Web/HTML/Element/dialog) afin d'afficher des demandes de confirmation.
Une autre méthode consiste à utiliser l'élément HTML [`<dialog>`](/fr/docs/Web/HTML/Element/dialog) afin d'afficher des demandes de confirmation.

## Spécifications

Expand Down

0 comments on commit 8ad29f1

Please sign in to comment.