aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/domtokenlist/replace/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/domtokenlist/replace/index.html')
-rw-r--r--files/ru/web/api/domtokenlist/replace/index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/ru/web/api/domtokenlist/replace/index.html b/files/ru/web/api/domtokenlist/replace/index.html
index 41172fee2f..b682299fcb 100644
--- a/files/ru/web/api/domtokenlist/replace/index.html
+++ b/files/ru/web/api/domtokenlist/replace/index.html
@@ -9,7 +9,7 @@ translation_of: Web/API/DOMTokenList/replace
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><var>tokenList</var>.replace(<var>oldToken</var>, <var>newToken</var>);</pre>
+<pre class="syntaxbox"><var>tokenList</var>.replace(<var>oldToken</var>, <var>newToken</var>);</pre>
<h3 id="Параметры">Параметры</h3>
@@ -34,11 +34,11 @@ translation_of: Web/API/DOMTokenList/replace
<p>В HTML:</p>
-<pre class="brush: html notranslate">&lt;span class="a b c"&gt;&lt;/span&gt;</pre>
+<pre class="brush: html">&lt;span class="a b c"&gt;&lt;/span&gt;</pre>
<p>В JavaScript:</p>
-<pre class="brush: js notranslate">let span = document.querySelector("span");
+<pre class="brush: js">let span = document.querySelector("span");
let classes = span.classList;
let result = classes.replace("c", "z");
@@ -58,7 +58,7 @@ if (result) {
<p>Следующий полифил добавит метод replace в класс <code>DOMTokenList</code>.  Следующий код будет работать только с <strong>IE10-11</strong>. Чтобы использовать с более ранними версиями IE, обратитесь к полифилу по {{domxref("element.classList#Polyfill")}}</p>
-<pre class="brush: js notranslate"><code>DOMTokenList.prototype.replace = function (a, b) {
+<pre class="brush: js"><code>DOMTokenList.prototype.replace = function (a, b) {
if (this.contains(a)) {
  this.add(b);
this.remove(a);