diff options
author | Thomas Citharel <github@tcit.fr> | 2021-05-08 14:41:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 14:41:17 +0200 |
commit | 3b0f3b4310d7cad3bd61d0fbfcbc2f81d9cc6713 (patch) | |
tree | 22573e424d7a29b5e8c15beceffd8a96c5d2ec0c /files/ja/web/api/cachestorage | |
parent | 9d44c5f911d2e22da70737c1576f6e065bebab57 (diff) | |
download | translated-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/ja/web/api/cachestorage')
-rw-r--r-- | files/ja/web/api/cachestorage/keys/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ja/web/api/cachestorage/keys/index.html b/files/ja/web/api/cachestorage/keys/index.html index 02311df3a8..d7983bdff6 100644 --- a/files/ja/web/api/cachestorage/keys/index.html +++ b/files/ja/web/api/cachestorage/keys/index.html @@ -37,7 +37,7 @@ translation_of: Web/API/CacheStorage/keys <p>このコードスニペットでは、{{domxref("ServiceWorkerGlobalScope.onactivate", "activate")}} イベントを待機してから、新しいサービスワーカーがアクティブ化される前に、古い未使用のキャッシュをクリアする {{domxref("ExtendableEvent.waitUntil","waitUntil()")}} ブロックを実行します。 ここに、保持したいキャッシュの名前を含むホワイトリスト(<code>cacheWhitelist</code>)があります。 <code>keys()</code> を使用して {{domxref("CacheStorage")}} オブジェクトのキャッシュのキーを返し、各キーをチェックしてホワイトリストにあるかどうかを確認します。 ない場合は、{{domxref("CacheStorage.delete()")}} を使用して削除します。</p> -<pre class="brush: js">then.addEventListener('activate', function(event) { +<pre class="brush: js">this.addEventListener('activate', function(event) { var cacheWhitelist = ['v2']; event.waitUntil( |