diff options
Diffstat (limited to 'files/ru/web/api/element/slot/index.html')
-rw-r--r-- | files/ru/web/api/element/slot/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/web/api/element/slot/index.html b/files/ru/web/api/element/slot/index.html index 7feac10876..0cf309a075 100644 --- a/files/ru/web/api/element/slot/index.html +++ b/files/ru/web/api/element/slot/index.html @@ -36,7 +36,7 @@ translation_of: Web/API/Element/slot <span slot="my-text">Let's have some different text!</span> </my-paragraph></pre> -<p>В нашем JavaScript файле мы получаем ссылку {{htmlelement("span")}}, показанную выше, а затем регестрием ссылку на имя соответствующего элемента <code><slot></code>.</p> +<p>В нашем JavaScript файле мы получаем ссылку {{htmlelement("span")}}, показанную выше, а затем регистрируем ссылку на имя соответствующего элемента <code><slot></code>.</p> <pre class="brush: js">let slottedSpan = document.querySelector('my-paragraph span') console.log(slottedSpan.slot); // logs <span class="message-body-wrapper"><span class="message-flex-body"><span class="devtools-monospace message-body"><span class="objectBox objectBox-string">'my-text'</span></span></span></span></pre> |