aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/api/storage
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/api/storage')
-rw-r--r--files/ru/web/api/storage/index.html2
-rw-r--r--files/ru/web/api/storage/removeitem/index.html4
2 files changed, 3 insertions, 3 deletions
diff --git a/files/ru/web/api/storage/index.html b/files/ru/web/api/storage/index.html
index f6e0d3b1e4..a328426988 100644
--- a/files/ru/web/api/storage/index.html
+++ b/files/ru/web/api/storage/index.html
@@ -46,7 +46,7 @@ translation_of: Web/API/Storage
<p>В данном примере мы получаем доступ к объекту Storage вызывая localStorage. Для начала мы проверяем содержит ли local storage элементы данных используя <code>!localStorage.getItem('bgcolor')</code>. Если да, мы вызываем функцию <code>setStyles()</code> которая получает элементы данных используя {{domxref("localStorage.getItem()")}} и использует их значения для обновления стилей на странице. Если нет, мы вызывает другую функцию, <code>populateStorage()</code>, которая использует {{domxref("localStorage.setItem()")}} что бы установить значения для элементов,  потом вызываем <code>setStyles()</code>.</p>
-<pre class="brush: js notranslate">if(!localStorage.getItem('bgcolor')) {
+<pre class="brush: js">if(!localStorage.getItem('bgcolor')) {
populateStorage();
} else {
setStyles();
diff --git a/files/ru/web/api/storage/removeitem/index.html b/files/ru/web/api/storage/removeitem/index.html
index e0767fa6a8..9984a1316a 100644
--- a/files/ru/web/api/storage/removeitem/index.html
+++ b/files/ru/web/api/storage/removeitem/index.html
@@ -13,7 +13,7 @@ translation_of: Web/API/Storage/removeItem
<h2 id="Синтаксис">Синтаксис</h2>
-<pre class="syntaxbox notranslate"><em>storage</em>.removeItem(<em>keyName</em>);</pre>
+<pre class="syntaxbox"><em>storage</em>.removeItem(<em>keyName</em>);</pre>
<h3 id="Параметры">Параметры</h3>
@@ -30,7 +30,7 @@ translation_of: Web/API/Storage/removeItem
<p>Следующая функция создаёт три элемента внутри локального хранилища и потом удаляет элемент с ключом <em>image</em>.</p>
-<pre class="brush: js notranslate">function populateStorage() {
+<pre class="brush: js">function populateStorage() {
localStorage.setItem('bgcolor', 'red');
localStorage.setItem('font', 'Helvetica');
localStorage.setItem('image', 'myCat.png');