aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/event/bubbles/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/event/bubbles/index.html')
-rw-r--r--files/ru/web/api/event/bubbles/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/event/bubbles/index.html b/files/ru/web/api/event/bubbles/index.html
index 4daa6fbaa2..f3f77f9542 100644
--- a/files/ru/web/api/event/bubbles/index.html
+++ b/files/ru/web/api/event/bubbles/index.html
@@ -15,20 +15,20 @@ translation_of: Web/API/Event/bubbles
<h3 id="Синтаксис">Синтаксис</h3>
-<pre class="notranslate">event.bubbles</pre>
+<pre>event.bubbles</pre>
<p>Возвращает булево значение <code>true</code>, если событие является всплывающим внутри DOM.</p>
<h3 id="Syntax">Пример</h3>
-<pre class="eval notranslate"><em>var bool</em> = event.bubbles;
+<pre class="eval"><em>var bool</em> = event.bubbles;
</pre>
<p><code>bool</code> содержит <code>true</code> или <code>false</code> в зависимости от того, может событие быть всплывающим внутри DOM или нет</p>
<h3 id="Example">Пример</h3>
-<pre class="notranslate">function handleInput(e) {
+<pre>function handleInput(e) {
// Проверяем всплывает ли событие и ...
if (!e.bubbles) {
// ... пропускаем событие сюда если нет