diff options
Diffstat (limited to 'files/ru/web/api/extendableevent/waituntil/index.html')
-rw-r--r-- | files/ru/web/api/extendableevent/waituntil/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/api/extendableevent/waituntil/index.html b/files/ru/web/api/extendableevent/waituntil/index.html index 7adc465c72..66225a232d 100644 --- a/files/ru/web/api/extendableevent/waituntil/index.html +++ b/files/ru/web/api/extendableevent/waituntil/index.html @@ -19,7 +19,7 @@ translation_of: Web/API/ExtendableEvent/waitUntil <h2 id="Синтаксис">Синтаксис</h2> -<pre class="syntaxbox notranslate"><em>extendableEvent</em>.waitUntil(<em>promise</em>);</pre> +<pre class="syntaxbox"><em>extendableEvent</em>.waitUntil(<em>promise</em>);</pre> <h3 id="Параметры">Параметры</h3> @@ -33,7 +33,7 @@ translation_of: Web/API/ExtendableEvent/waitUntil <p>Использование <code>waitUntil()</code> внутри события <code>install</code> в service worker:</p> -<pre class="brush: js;highlight:[10] notranslate">addEventListener('install', event => { +<pre class="brush: js;highlight:[10]">addEventListener('install', event => { const preCache = async () => { const cache = await caches.open('static-v1'); return cache.addAll([ |