Skip to content

Commit 4ae1290

Browse files
committed
up
1 parent e4db23f commit 4ae1290

File tree

8 files changed

+3
-3
lines changed

8 files changed

+3
-3
lines changed

10-regular-expressions-javascript/01-regexp-introduction/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ There are only 5 of them in JavaScript:
9696
: With this flag the search looks for all matches, without it -- only the first one (we'll see uses in the next chapter).
9797
9898
`m`
99-
: Multiline mode (will cover in [todo]).
99+
: Multiline mode (covered in the chapter <info:regexp-multiline>).
100100
101101
`u`
102102
: Enables full unicode support. The flag enables correct processing of surrogate pairs. More about that in the chapter <info:regexp-unicode>.

2-ui/3-event-details/5-keyboard-events/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Let's study keyboard events.
44

55
Before we start, please note that on modern devices there are other ways to "input something" then just a keyboard. For instance, people use speech recognition (tap microphone, say something, see it entered) or copy/paste with a mouse.
66

7-
So if we want to track any input into an `<input>` field, then keyboard events is not enough. There's another event named `input` to handle changes of an `<input>` field, by any means. And it may be a better choice for such task. We'll cover it a bit later [todo link].
7+
So if we want to track any input into an `<input>` field, then keyboard events is not enough. There's another event named `input` to handle changes of an `<input>` field, by any means. And it may be a better choice for such task. We'll cover it later in the chapter <info:events-change-input>.
88

99
Keyboard events should be used when we want to handle keyboard actions (virtual keyboard usually also counts). For instance, to react on arrow keys `key:Up` and `key:Down` or hotkeys (including combinations of keys).
1010

7-frames-and-windows/01-popup-windows/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ For windows with URLs from another sites, we are able to change the location by
137137

138138
A popup may access the "opener" window as well. A JavaScript in it may use `window.opener` to access the window that opened it. It is `null` for all windows except popups.
139139

140-
So both the main window and the popup have a reference to each other. Thay may modify each other freely assuming that they come from the same origin. If that's not so, then there are still means to communicate, to be covered later [todo when].
140+
So both the main window and the popup have a reference to each other. Thay may modify each other freely assuming that they come from the same origin. If that's not so, then there are still means to communicate, to be covered in the next chapter <info:cross-window-communication>.
141141

142142
## Closing a popup
143143

0 commit comments

Comments
 (0)