diff options
author | Yana Klose-Ivanova <75987641+captainspring@users.noreply.github.com> | 2021-03-17 21:18:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 21:18:37 +0300 |
commit | 1416c1ccdb9abcd6f0e30a4ab04e98818358ce13 (patch) | |
tree | 91b95c0fa6cd096743915f67709a6195a9a051dc | |
parent | 345a60f5f0aa29f65bd0e13aee7f55870f4a92c2 (diff) | |
download | translated-content-1416c1ccdb9abcd6f0e30a4ab04e98818358ce13.tar.gz translated-content-1416c1ccdb9abcd6f0e30a4ab04e98818358ce13.tar.bz2 translated-content-1416c1ccdb9abcd6f0e30a4ab04e98818358ce13.zip |
Fix direction of text in the JS example
Fixes issue #198: right-to-left text in the JS example in https://developer.mozilla.org/ru/docs/Web/API/Document/readyState.
-rw-r--r-- | files/ru/web/api/document/readystate/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/document/readystate/index.html b/files/ru/web/api/document/readystate/index.html index 6e9a13266d..52eb1850bb 100644 --- a/files/ru/web/api/document/readystate/index.html +++ b/files/ru/web/api/document/readystate/index.html @@ -37,7 +37,7 @@ translation_of: Web/API/Document/readyState <h3 id="Разные_состояния_загрузки_страницы">Разные состояния загрузки страницы</h3> -<pre class="brush: js notranslate" dir="rtl"><span>switch (document.readyState) { +<pre class="brush: js notranslate"><span>switch (document.readyState) { case "loading": // Страница все еще загружается break; |