diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-03-18 02:37:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 02:37:24 +0300 |
commit | 57e0abae4196d5e89486fa87171e12dd14f78584 (patch) | |
tree | 2180ef5a575f698475f078e4a05b746a09399b0d /files/ru/web/html | |
parent | 242f0b78b42992e2e1c961fa81172f364d2be6ca (diff) | |
download | translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.gz translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.tar.bz2 translated-content-57e0abae4196d5e89486fa87171e12dd14f78584.zip |
Fix various typos (#203)
* Fix various typos
* Auto fixes
* Apply suggestions from code review
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
* Apply suggestions from code review
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
Co-authored-by: Artem Shibakov <shibakow@gmail.com>
Diffstat (limited to 'files/ru/web/html')
-rw-r--r-- | files/ru/web/html/element/template/index.html | 4 | ||||
-rw-r--r-- | files/ru/web/html/global_attributes/index.html | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/files/ru/web/html/element/template/index.html b/files/ru/web/html/element/template/index.html index 7b45766c33..1f8131817d 100644 --- a/files/ru/web/html/element/template/index.html +++ b/files/ru/web/html/element/template/index.html @@ -79,7 +79,7 @@ translation_of: Web/HTML/Element/template <p>Теперь, когда таблица была создана и шаблон определён, мы используем JavaScript чтобы вставить строки в таблицу. Каждая строка строится с использованием шаблона.</p> <pre class="brush:js;">// Проверяем поддерживает ли браузер тег <template> -// проверив наличие аттрибута content у элемента template +// проверив наличие атрибута content у элемента template if ('content' in document.createElement('template')) { // Instantiate the table with the existing HTML tbody and the row with the template @@ -103,7 +103,7 @@ if ('content' in document.createElement('template')) { } else { // необходимо найти другой способ добавить строку в таблицу т.к. - // тег <template> не поддерживатся браузером + // тег <template> не поддерживается браузером } </pre> diff --git a/files/ru/web/html/global_attributes/index.html b/files/ru/web/html/global_attributes/index.html index 548956a369..39e0fe294b 100644 --- a/files/ru/web/html/global_attributes/index.html +++ b/files/ru/web/html/global_attributes/index.html @@ -46,17 +46,17 @@ translation_of: Web/HTML/Global_attributes </ul> </dd> <dt id="attr-draggable"><code><a href="/ru/docs/Web/HTML/Global_attributes/draggable">draggable</a></code> {{experimental_inline}}</dt> - <dd>Это перечислимый атрибут, указывающий, можно ли перетаскивать ээлемент используя <a href="/ru/docs/Web/Guide/HTML/Drag_and_drop">Drag and Drop API</a>. Он может иметь одно из следующих значений: + <dd>Это перечислимый атрибут, указывающий, можно ли перетаскивать элемент с помощью <a href="/ru/docs/Web/Guide/HTML/Drag_and_drop">Drag and Drop API</a>. Он может принимать одно из следующих значений: <ul> <li><code>true</code>, указывающее, что элемент можно перетаскивать;</li> <li><code>false</code>, указывающее, что элемент нельзя перетаскивать.</li> </ul> </dd> <dt id="attr-dropzone"><code><a href="/ru/docs/Web/HTML/Global_attributes/dropzone">dropzone</a></code> {{experimental_inline}}</dt> - <dd>Это перечислимый атрибут, указывающий типы содержимого, которое можно перетащить в ээлемент с использованием <a href="/ru/docs/Web/Guide/HTML/Drag_and_drop">Drag and Drop API</a>. Он может иметь одно из следующих значений: + <dd>Это перечислимый атрибут, указывающий типы содержимого, которое можно перетащить в элемент с помощью <a href="/ru/docs/Web/Guide/HTML/Drag_and_drop">Drag and Drop API</a>. Он может принимать одно из следующих значений: <ul> <li><code>copy</code>, указывающее, что перетаскивание создаст копию перетаскиваемого элемента;</li> - <li><code>move</code>, указывающее, что перетаскиваемый ээлемент будет перемещен в новое расположение;</li> + <li><code>move</code>, указывающее, что перетаскиваемый элемент будет перемещен в новое расположение;</li> <li><code>link</code> — создаст ссылку на перетаскиваемые данные.</li> </ul> </dd> |