diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-27 02:31:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-27 02:31:24 +0300 |
commit | 980fe00a74a9ad013b945755415ace2e5429c3c2 (patch) | |
tree | a1c6bb4b302e69bfa53eab13e44500eba55d1696 /files/ru/web/api/event/bubbles | |
parent | 374a039b97a11ee7306539d16aaab27fed66b398 (diff) | |
download | translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.gz translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.tar.bz2 translated-content-980fe00a74a9ad013b945755415ace2e5429c3c2.zip |
[RU] Remove notranslate (#2874)
Diffstat (limited to 'files/ru/web/api/event/bubbles')
-rw-r--r-- | files/ru/web/api/event/bubbles/index.html | 6 |
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) { // ... пропускаем событие сюда если нет |