aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/xmlhttprequest/send
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/xmlhttprequest/send
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/xmlhttprequest/send')
-rw-r--r--files/ru/web/api/xmlhttprequest/send/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/xmlhttprequest/send/index.html b/files/ru/web/api/xmlhttprequest/send/index.html
index a7c82474a7..34736d0716 100644
--- a/files/ru/web/api/xmlhttprequest/send/index.html
+++ b/files/ru/web/api/xmlhttprequest/send/index.html
@@ -78,7 +78,7 @@ translation_of: Web/API/XMLHttpRequest/send
xhr.open('GET', '/server', true);
xhr.onload = function () {
- // Запрос завершен. Здесь можно обрабатывать результат.
+ // Запрос завершён. Здесь можно обрабатывать результат.
};
xhr.send(null);
@@ -94,12 +94,12 @@ xhr.send(null);
<pre><code>var xhr = new XMLHttpRequest();
xhr.open("POST", '/server', true);
-//Передает правильный заголовок в запросе
+//Передаёт правильный заголовок в запросе
xhr.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xhr.onreadystatechange = function() {//Вызывает функцию при смене состояния.
if(xhr.readyState == XMLHttpRequest.DONE &amp;&amp; xhr.status == 200) {
- // Запрос завершен. Здесь можно обрабатывать результат.
+ // Запрос завершён. Здесь можно обрабатывать результат.
}
}
xhr.send("foo=bar&amp;lorem=ipsum");