diff options
author | Maxim Postautov <54762420+mpstv@users.noreply.github.com> | 2021-03-17 21:44:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 21:44:40 +0300 |
commit | 242f0b78b42992e2e1c961fa81172f364d2be6ca (patch) | |
tree | 6f9253e550439937412add198257dcda8e7bd6db /files/ru/web | |
parent | a72bb39e55e6c7f06df3ea8f6f7286f9a4a93d10 (diff) | |
parent | 1416c1ccdb9abcd6f0e30a4ab04e98818358ce13 (diff) | |
download | translated-content-242f0b78b42992e2e1c961fa81172f364d2be6ca.tar.gz translated-content-242f0b78b42992e2e1c961fa81172f364d2be6ca.tar.bz2 translated-content-242f0b78b42992e2e1c961fa81172f364d2be6ca.zip |
Merge pull request #206 from mdn/captainspring/ru-fixes-rtl
Fix direction of text in the JS example
Diffstat (limited to 'files/ru/web')
-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; |