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/conflicting/web/api/web_storage_api/index.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/conflicting/web/api/web_storage_api/index.html')
-rw-r--r-- | files/ru/conflicting/web/api/web_storage_api/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ru/conflicting/web/api/web_storage_api/index.html b/files/ru/conflicting/web/api/web_storage_api/index.html index e5c7cbf845..25f0170d91 100644 --- a/files/ru/conflicting/web/api/web_storage_api/index.html +++ b/files/ru/conflicting/web/api/web_storage_api/index.html @@ -59,7 +59,7 @@ original_slug: Web/Guide/API/DOM/Storage <p>Это глобальный объект <span style="line-height: 1.5;">(</span><code style="font-style: normal; line-height: 1.5;">sessionStorage</code><span style="line-height: 1.5;">), который сохраняет значения, которые доступны в течение периода текущей сессии. Сессия страницы длится, пока браузер открыт, и восстанавливает свои значения после перегрузки страницы. Открытие страницы в новой вкладке или окне приведет к созданию новой сессии для этой страницы.</span></p> -<pre class="brush:js">// Сохранить данные в текущем хранилизе сессий +<pre class="brush:js">// Сохранить данные в локальное хранилище текущей сессии sessionStorage.setItem("username", "John"); // Получить значения сохраненного значения |