aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/usb
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/usb')
-rw-r--r--files/ru/web/api/usb/getdevices/index.html4
-rw-r--r--files/ru/web/api/usb/onconnect/index.html2
-rw-r--r--files/ru/web/api/usb/ondisconnect/index.html2
-rw-r--r--files/ru/web/api/usb/requestdevice/index.html4
4 files changed, 6 insertions, 6 deletions
diff --git a/files/ru/web/api/usb/getdevices/index.html b/files/ru/web/api/usb/getdevices/index.html
index 8b69fce817..a0a61f2a3a 100644
--- a/files/ru/web/api/usb/getdevices/index.html
+++ b/files/ru/web/api/usb/getdevices/index.html
@@ -17,7 +17,7 @@ translation_of: Web/API/USB/getDevices
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><em>USB</em>.getDevices()</pre>
+<pre class="syntaxbox"><em>USB</em>.getDevices()</pre>
<h3 id="Параметры">Параметры</h3>
@@ -31,7 +31,7 @@ translation_of: Web/API/USB/getDevices
<p>В следующем примере имена продуктов и серийные номера сопряжённых устройств выводятся в консоль. Для информации о сопряжённых устройствах, смотрите {{DOMxRef("USB.requestDevice","USB.requestDevice()")}}.</p>
-<pre class="brush: js notranslate">navigator.usb.getDevices()
+<pre class="brush: js">navigator.usb.getDevices()
.then(devices =&gt; {
  console.log("Total devices: " + devices.length);
  devices.forEach(device =&gt; {
diff --git a/files/ru/web/api/usb/onconnect/index.html b/files/ru/web/api/usb/onconnect/index.html
index e0a26c8bac..abe16f16c4 100644
--- a/files/ru/web/api/usb/onconnect/index.html
+++ b/files/ru/web/api/usb/onconnect/index.html
@@ -17,7 +17,7 @@ translation_of: Web/API/USB/onconnect
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><em>USB</em>.onconnect = <em>connectFunction</em></pre>
+<pre class="syntaxbox"><em>USB</em>.onconnect = <em>connectFunction</em></pre>
<h2 id="Спецификации">Спецификации</h2>
diff --git a/files/ru/web/api/usb/ondisconnect/index.html b/files/ru/web/api/usb/ondisconnect/index.html
index 742d276e88..ce89669aba 100644
--- a/files/ru/web/api/usb/ondisconnect/index.html
+++ b/files/ru/web/api/usb/ondisconnect/index.html
@@ -17,7 +17,7 @@ translation_of: Web/API/USB/ondisconnect
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate">USB.ondisconnect = <em>disconnectFunction</em></pre>
+<pre class="syntaxbox">USB.ondisconnect = <em>disconnectFunction</em></pre>
<h2 id="Спецификации">Спецификации</h2>
diff --git a/files/ru/web/api/usb/requestdevice/index.html b/files/ru/web/api/usb/requestdevice/index.html
index 0d3a34f697..fc8257f9f8 100644
--- a/files/ru/web/api/usb/requestdevice/index.html
+++ b/files/ru/web/api/usb/requestdevice/index.html
@@ -17,7 +17,7 @@ translation_of: Web/API/USB/requestDevice
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><em>USB</em>.requestDevice([<em>filters</em>])</pre>
+<pre class="syntaxbox"><em>USB</em>.requestDevice([<em>filters</em>])</pre>
<h3 id="Параметры">Параметры</h3>
@@ -45,7 +45,7 @@ translation_of: Web/API/USB/requestDevice
<p>Количество фильтров не определяет количество устройств, показываемых браузером. Например, если найдено только USB-устройство с product ID <code>0xa800</code>, браузер отобразит только одно устройство. Но, если браузер определит два устройства, совпадающих с первым фильтром, и ещё одно, совпадающее со вторым, будут показаны все три устройства.</p>
-<pre class="brush: js notranslate">const filters = [
+<pre class="brush: js">const filters = [
        {vendorId: 0x1209, productId: 0xa800},
  {vendorId: 0x1209, productId: 0xa850}
      ];