Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ru] update APIRef macro usage #23279

Merged
merged 2 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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