diff options
Diffstat (limited to 'files/ru/web/api/beforeinstallpromptevent')
-rw-r--r-- | files/ru/web/api/beforeinstallpromptevent/index.html | 2 | ||||
-rw-r--r-- | files/ru/web/api/beforeinstallpromptevent/prompt/index.html | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/beforeinstallpromptevent/index.html b/files/ru/web/api/beforeinstallpromptevent/index.html index ab241f8f1d..d572446540 100644 --- a/files/ru/web/api/beforeinstallpromptevent/index.html +++ b/files/ru/web/api/beforeinstallpromptevent/index.html @@ -45,7 +45,7 @@ translation_of: Web/API/BeforeInstallPromptEvent <h2 id="Пример">Пример</h2> -<pre class="brush: js notranslate">window.addEventListener("beforeinstallprompt", function(e) { +<pre class="brush: js">window.addEventListener("beforeinstallprompt", function(e) { // Зарегистрируйте платформы, указанные в качестве параметров, в запросе на установку console.log(e.platforms); // e.g., ["web", "android", "windows"] e.userChoice.then(function(choiceResult) { diff --git a/files/ru/web/api/beforeinstallpromptevent/prompt/index.html b/files/ru/web/api/beforeinstallpromptevent/prompt/index.html index f8c623a1c1..ad2177d693 100644 --- a/files/ru/web/api/beforeinstallpromptevent/prompt/index.html +++ b/files/ru/web/api/beforeinstallpromptevent/prompt/index.html @@ -14,7 +14,7 @@ translation_of: Web/API/BeforeInstallPromptEvent/prompt <h2 id="Синтаксис">Синтаксис</h2> -<pre class="syntaxbox notranslate">BeforeInstallPromptEvent.prompt()</pre> +<pre class="syntaxbox">BeforeInstallPromptEvent.prompt()</pre> <h3 id="Параметры">Параметры</h3> @@ -26,7 +26,7 @@ translation_of: Web/API/BeforeInstallPromptEvent/prompt <h2 id="Пример">Пример</h2> -<pre class="notranslate">var isTooSoon = true; +<pre>var isTooSoon = true; window.addEventListener("beforeinstallprompt", function(e) { if (isTooSoon) { e.preventDefault(); // Предотвращает быстрое отображение |