diff --git a/10-regular-expressions-javascript/01-regexp-introduction/article.md b/10-regular-expressions-javascript/01-regexp-introduction/article.md index 829d0809..3ae39fdb 100644 --- a/10-regular-expressions-javascript/01-regexp-introduction/article.md +++ b/10-regular-expressions-javascript/01-regexp-introduction/article.md @@ -96,7 +96,7 @@ There are only 5 of them in JavaScript: : With this flag the search looks for all matches, without it -- only the first one (we'll see uses in the next chapter). `m` -: Multiline mode (will cover in [todo]). +: Multiline mode (covered in the chapter ). `u` : Enables full unicode support. The flag enables correct processing of surrogate pairs. More about that in the chapter . diff --git a/2-ui/3-event-details/5-keyboard-events/article.md b/2-ui/3-event-details/5-keyboard-events/article.md index a79b8e2d..fe3139b1 100644 --- a/2-ui/3-event-details/5-keyboard-events/article.md +++ b/2-ui/3-event-details/5-keyboard-events/article.md @@ -4,7 +4,7 @@ Let's study keyboard events. 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. -So if we want to track any input into an `` field, then keyboard events is not enough. There's another event named `input` to handle changes of an `` field, by any means. And it may be a better choice for such task. We'll cover it a bit later [todo link]. +So if we want to track any input into an `` field, then keyboard events is not enough. There's another event named `input` to handle changes of an `` field, by any means. And it may be a better choice for such task. We'll cover it later in the chapter . 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). diff --git a/2-ui/4-forms-controls/3-events-change/1-deposit-calculator/solution.md b/2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/solution.md similarity index 100% rename from 2-ui/4-forms-controls/3-events-change/1-deposit-calculator/solution.md rename to 2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/solution.md diff --git a/2-ui/4-forms-controls/3-events-change/1-deposit-calculator/solution.view/index.html b/2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/solution.view/index.html similarity index 100% rename from 2-ui/4-forms-controls/3-events-change/1-deposit-calculator/solution.view/index.html rename to 2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/solution.view/index.html diff --git a/2-ui/4-forms-controls/3-events-change/1-deposit-calculator/source.view/index.html b/2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/source.view/index.html similarity index 100% rename from 2-ui/4-forms-controls/3-events-change/1-deposit-calculator/source.view/index.html rename to 2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/source.view/index.html diff --git a/2-ui/4-forms-controls/3-events-change/1-deposit-calculator/task.md b/2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/task.md similarity index 100% rename from 2-ui/4-forms-controls/3-events-change/1-deposit-calculator/task.md rename to 2-ui/4-forms-controls/3-events-change-input/1-deposit-calculator/task.md diff --git a/2-ui/4-forms-controls/3-events-change/article.md b/2-ui/4-forms-controls/3-events-change-input/article.md similarity index 100% rename from 2-ui/4-forms-controls/3-events-change/article.md rename to 2-ui/4-forms-controls/3-events-change-input/article.md diff --git a/7-frames-and-windows/01-popup-windows/article.md b/7-frames-and-windows/01-popup-windows/article.md index 60d23554..f05af590 100644 --- a/7-frames-and-windows/01-popup-windows/article.md +++ b/7-frames-and-windows/01-popup-windows/article.md @@ -137,7 +137,7 @@ For windows with URLs from another sites, we are able to change the location by 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. -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]. +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 . ## Closing a popup