diff options
Diffstat (limited to 'files/ru/web/api/beforeinstallpromptevent/prompt/index.html')
-rw-r--r-- | files/ru/web/api/beforeinstallpromptevent/prompt/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ru/web/api/beforeinstallpromptevent/prompt/index.html b/files/ru/web/api/beforeinstallpromptevent/prompt/index.html new file mode 100644 index 0000000000..f8c623a1c1 --- /dev/null +++ b/files/ru/web/api/beforeinstallpromptevent/prompt/index.html @@ -0,0 +1,48 @@ +--- +title: BeforeInstallPromptEvent.prompt() +slug: Web/API/BeforeInstallPromptEvent/prompt +tags: + - API + - BeforeInstallPromptEvent + - Experimental + - Method + - Reference + - prompt +translation_of: Web/API/BeforeInstallPromptEvent/prompt +--- +<div><span class="seoSummary">Метод <strong><code>prompt()</code></strong> интерфейса {{domxref("BeforeInstallPromptEvent")}} позволяет разработчику показывать подсказку об установке в любое время по своему выбору. </span></div> + +<h2 id="Синтаксис">Синтаксис</h2> + +<pre class="syntaxbox notranslate">BeforeInstallPromptEvent.prompt()</pre> + +<h3 id="Параметры">Параметры</h3> + +<p>None.</p> + +<h3 id="Возвращаемое_значение">Возвращаемое значение</h3> + +<p>Пустой {{jsxref("Promise")}}.</p> + +<h2 id="Пример">Пример</h2> + +<pre class="notranslate">var isTooSoon = true; +window.addEventListener("beforeinstallprompt", function(e) { + if (isTooSoon) { + e.preventDefault(); // Предотвращает быстрое отображение + // Запросить позже: + setTimeout(function() { + isTooSoon = false; + e.prompt(); // Выбрасывает, если вызывается более одного раза или по умолчанию не предотвращено (not prevented) + }, 10000); + } + + // Событие было повторно отправлено в ответ на наш запрос + // ... +});</pre> + +<h2 id="Совместимость_с_браузером">Совместимость с браузером</h2> + + + +<p>{{Compat("api.BeforeInstallPromptEvent.prompt")}}</p> |