diff options
Diffstat (limited to 'files/ja/web')
-rw-r--r-- | files/ja/web/api/cachestorage/keys/index.html | 2 | ||||
-rw-r--r-- | files/ja/web/api/serviceworkerglobalscope/onactivate/index.html | 2 |
2 files changed, 2 insertions, 2 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( diff --git a/files/ja/web/api/serviceworkerglobalscope/onactivate/index.html b/files/ja/web/api/serviceworkerglobalscope/onactivate/index.html index 61ade1cdd8..5458d5376d 100644 --- a/files/ja/web/api/serviceworkerglobalscope/onactivate/index.html +++ b/files/ja/web/api/serviceworkerglobalscope/onactivate/index.html @@ -25,7 +25,7 @@ ServiceWorkerGlobalScope.addEventListener('activate', function(event) { ... });< <p>次のスニペットは、<a href="/ja/docs/Web/API/ServiceWorker_API/Using_Service_Workers#Updating_your_service_worker">Using Service Workers</a> のものです; 詳細はそちらを見てください。</p> -<pre class="brush: js">then.addEventListener('activate', function(event) { +<pre class="brush: js">this.addEventListener('activate', function(event) { var cacheWhitelist = ['v2']; event.waitUntil( |