aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/clients
diff options
context:
space:
mode:
authorAlexey Istomin <webistomin@gmail.com>2021-03-20 18:37:44 +0300
committerGitHub <noreply@github.com>2021-03-20 18:37:44 +0300
commit841aae260382e2bf5ebb44d765d8c7301d27caab (patch)
tree81a92c25f6dc02e5f119131785d721db79fc3455 /files/ru/web/api/clients
parent730fea852ff827ca034fe17c84288c95d270ec92 (diff)
downloadtranslated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.tar.gz
translated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.tar.bz2
translated-content-841aae260382e2bf5ebb44d765d8c7301d27caab.zip
Restore "ё" letter in Russian translation (#239)
* docs(ru): restore ё letter * docs(ru): resolve conflicts * refactor(idea): remove ide folder
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 &lt; 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);
}));
});