aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/event/bubbles/index.html
diff options
context:
space:
mode:
authorAlexey Pyltsyn <lex61rus@gmail.com>2021-10-20 13:28:52 +0300
committerGitHub <noreply@github.com>2021-10-20 13:28:52 +0300
commit1386fed7d38652d5848d315927e7e23a66cffd13 (patch)
treeeb4b9adfec3f46c77304a1b9461d44357c8164c8 /files/ru/web/api/event/bubbles/index.html
parentb0f32a46245b1033098a5a9826a7818fa4e65dde (diff)
downloadtranslated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.gz
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.tar.bz2
translated-content-1386fed7d38652d5848d315927e7e23a66cffd13.zip
[RU] Remove `name` attribute from headings (#2788)
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) {
// Проверяем всплывает ли событие и ...