aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/cachestorage/keys
diff options
context:
space:
mode:
authorThomas Citharel <github@tcit.fr>2021-05-08 14:41:17 +0200
committerGitHub <noreply@github.com>2021-05-08 14:41:17 +0200
commit3b0f3b4310d7cad3bd61d0fbfcbc2f81d9cc6713 (patch)
tree22573e424d7a29b5e8c15beceffd8a96c5d2ec0c /files/fr/web/api/cachestorage/keys
parent9d44c5f911d2e22da70737c1576f6e065bebab57 (diff)
downloadtranslated-content-3b0f3b4310d7cad3bd61d0fbfcbc2f81d9cc6713.tar.gz
translated-content-3b0f3b4310d7cad3bd61d0fbfcbc2f81d9cc6713.tar.bz2
translated-content-3b0f3b4310d7cad3bd61d0fbfcbc2f81d9cc6713.zip
Fix a typo in the example for CacheStorage.keys() (#781)
Follow-up to https://github.com/mdn/content/pull/4790 on the main repo Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'files/fr/web/api/cachestorage/keys')
-rw-r--r--files/fr/web/api/cachestorage/keys/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/fr/web/api/cachestorage/keys/index.html b/files/fr/web/api/cachestorage/keys/index.html
index 650b9b4f53..69d08de58b 100644
--- a/files/fr/web/api/cachestorage/keys/index.html
+++ b/files/fr/web/api/cachestorage/keys/index.html
@@ -37,7 +37,7 @@ translation_of: Web/API/CacheStorage/keys
<p>Dans ce fragment de code, nous attendons un évènement, et bloquons avec un {{domxref("ExtendableEvent.waitUntil","waitUntil()")}}, qui nettoie les anciens caches, inutilisés, avant que le nouveau service worker soit activé. Nous avons ici une liste blanche contenant le nom du cache que nous voulons garder. Nous retournons les clés des caches dans l'objet {{domxref("CacheStorage")}} utilisant {{domxref("CacheStorage.keys")}}, pour ensuite vérifier que chaque clé est dans la liste blance. Sinon, nous la supprimons avec <code>delete().</code></p>
-<pre class="brush: js">then.addEventListener('activate', function(event) {
+<pre class="brush: js">this.addEventListener('activate', function(event) {
var cacheWhitelist = ['v2'];
event.waitUntil(