Skip to content

Commit

Permalink
[ru] update APIRef macro usage (#23279)
Browse files Browse the repository at this point in the history
* [ru] update APIRef macro usage
  • Loading branch information
leon-win authored Sep 28, 2024
1 parent ae654e3 commit a090bf2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ slug: Learn/JavaScript/Building_blocks/Event_bubbling
original_slug: Web/API/Event/Comparison_of_Event_Targets
---

{{ ApiRef() }}

### Event targets

Легко запутаться в том, какую цель (target) следует изучить при написании обработчика событий. В этой статье разъяснено использование свойств target.

Существуют 5 целей для рассмотрения:
Expand Down
2 changes: 1 addition & 1 deletion files/ru/web/api/document/defaultview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ l10n:
sourceCommit: 0a881eea07f0cec6ca4ed85a24af43b367a9f80d
---

{{ApiRef}}
{{APIRef}}

В браузерах **`document.defaultView`** возвращает объект
{{domxref("Window", "window")}}, связанный с {{Glossary("Browsing_context", "документом")}}, или `null` если документ не доступен.
Expand Down
4 changes: 2 additions & 2 deletions files/ru/web/api/settimeout/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: WindowTimers.setTimeout()
title: Глобальная функция setTimeout()
slug: Web/API/setTimeout
---

{{ APIRef() }}
{{APIRef("HTML DOM")}} {{AvailableInWorkers}}

## Краткое изложение

Expand Down
4 changes: 2 additions & 2 deletions files/ru/web/api/window/sessionstorage/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: Window.sessionStorage
title: "Window: свойство sessionStorage"
slug: Web/API/Window/sessionStorage
---

{{APIRef()}}
{{APIRef("Web Storage API")}}

`Свойство sessionStorage` позволяет получить доступ к объекту {{domxref("Storage")}} текущей сессии. Свойство sessionStorage очень похоже на свойство {{domxref("Window.localStorage")}}, единственное различие заключается в том, что все данные, сохранённые в localStorage не имеют определённого времени жизни, а данные в sessionStorage очищаются в момент окончания сессии текущий страницы. Сессия страницы остаётся активной все время пока окно браузера открыто и сохраняется между перезагрузками страниц. **Открытие той же страницы в новом окне браузера или новой вкладке приводит к созданию новой сессии страницы,** что отличается от поведения session cookies**.**

Expand Down

0 comments on commit a090bf2

Please sign in to comment.