diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-18 20:11:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 20:11:37 +0300 |
commit | 100316f2f54500ba714391b4f6940e96bd246b77 (patch) | |
tree | a28cbef79be92b65373152c0aa2519f03807302d /files/ru/web/api/element | |
parent | 92ec3abaed21f67e7ca74ce02ddd96f0bdbe3f50 (diff) | |
download | translated-content-100316f2f54500ba714391b4f6940e96bd246b77.tar.gz translated-content-100316f2f54500ba714391b4f6940e96bd246b77.tar.bz2 translated-content-100316f2f54500ba714391b4f6940e96bd246b77.zip |
Remove redundant RTL direction in Russian translation (#216)
Diffstat (limited to 'files/ru/web/api/element')
-rw-r--r-- | files/ru/web/api/element/classlist/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ru/web/api/element/classlist/index.html b/files/ru/web/api/element/classlist/index.html index ef28f56c1c..c96fc8427a 100644 --- a/files/ru/web/api/element/classlist/index.html +++ b/files/ru/web/api/element/classlist/index.html @@ -54,10 +54,10 @@ translation_of: Web/API/Element/classList <h2 id="Примеры">Примеры</h2> -<pre class="brush: js" dir="rtl"><div id="clock" class="example for you"> </div> +<pre class="brush: js"><div id="clock" class="example for you"> </div> </pre> -<pre class="brush: js" dir="rtl">var elem = document.querySelector("#clock") +<pre class="brush: js">var elem = document.querySelector("#clock") //Выведем классы console.log(elem.classList); //DOMTokenList ["example", "for", "you"] |