aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/clients
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/clients')
-rw-r--r--files/ru/web/api/clients/index.html2
-rw-r--r--files/ru/web/api/clients/openwindow/index.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/clients/index.html b/files/ru/web/api/clients/index.html
index 5372df8139..9d0ad8fdec 100644
--- a/files/ru/web/api/clients/index.html
+++ b/files/ru/web/api/clients/index.html
@@ -39,7 +39,7 @@ translation_of: Web/API/Clients
for (i = 0 ; i < clients.length ; i++) {
if (clients[i] === 'index.html') {
clients.openWindow(clients[i]);
- // или сделать что-то другое, с учетом подошедшего клиента
+ // или сделать что-то другое, с учётом подошедшего клиента
}
}
});</pre>
diff --git a/files/ru/web/api/clients/openwindow/index.html b/files/ru/web/api/clients/openwindow/index.html
index 64d67ce7ca..78e5412005 100644
--- a/files/ru/web/api/clients/openwindow/index.html
+++ b/files/ru/web/api/clients/openwindow/index.html
@@ -14,7 +14,7 @@ translation_of: Web/API/Clients/openWindow
---
<div>{{APIRef("Service Workers API")}}</div>
-<p>Метод <strong><code>openWindow()</code></strong> интерфейса {{domxref("Clients")}} создает новый контекст просмотра верхнего уровня и загружает заданный URL. Если вызывающий скрипт не имеет разрешения на отображение всплывающих окон, <code>openWindow()</code> выдаст <code>InvalidAccessError</code>.</p>
+<p>Метод <strong><code>openWindow()</code></strong> интерфейса {{domxref("Clients")}} создаёт новый контекст просмотра верхнего уровня и загружает заданный URL. Если вызывающий скрипт не имеет разрешения на отображение всплывающих окон, <code>openWindow()</code> выдаст <code>InvalidAccessError</code>.</p>
<p>В Firefox этому методу разрешено отображать всплывающие окна только при вызове события клике по уведомлению.</p>
@@ -59,7 +59,7 @@ self.addEventListener('notificationclick', e =&gt; {
e.waitUntil(clients.matchAll({ type: 'window' }).then(clientsArr =&gt; {
// Если вкладка, соответствующая целевому URL-адресу, уже существует, сфокусируйтесь на ней;
const hadWindowToFocus = clientsArr.some(windowClient =&gt; windowClient.url === e.notification.data.url ? (windowClient.focus(), true) : false);
- // В противном случае откройте новую вкладку для соответствующего URL-адреса и сфокусируйте ее.
+ // В противном случае откройте новую вкладку для соответствующего URL-адреса и сфокусируйте её.
if (!hadWindowToFocus) clients.openWindow(e.notification.data.url).then(windowClient =&gt; windowClient ? windowClient.focus() : null);
}));
});