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 175482de36..4daa6fbaa2 100644
--- a/files/ru/web/api/event/bubbles/index.html
+++ b/files/ru/web/api/event/bubbles/index.html
@@ -5,7 +5,7 @@ translation_of: Web/API/Event/bubbles
---
<p>{{ ApiRef("DOM") }}</p>
-<h3 id="Summary" name="Summary">Описание</h3>
+<h3 id="Summary">Описание</h3>
<p>Указывает, является ли данное событие всплывающим внутри DOM.</p>
@@ -19,14 +19,14 @@ translation_of: Web/API/Event/bubbles
<p>Возвращает булево значение <code>true</code>, если событие является всплывающим внутри DOM.</p>
-<h3 id="Syntax" name="Syntax">Пример</h3>
+<h3 id="Syntax">Пример</h3>
<pre class="eval notranslate"><em>var bool</em> = event.bubbles;
</pre>
<p><code>bool</code> содержит <code>true</code> или <code>false</code> в зависимости от того, может событие быть всплывающим внутри DOM или нет</p>
-<h3 id="Example" name="Example">Пример</h3>
+<h3 id="Example">Пример</h3>
<pre class="notranslate">function handleInput(e) {
// Проверяем всплывает ли событие и ...