8
0
Просмотр исходного кода

Update docs/framework/guides/deep-dive/focus-tracking.md

Co-Authored-By: Piotrek Koszuliński <pkoszulinski@gmail.com>
Aleksander Nowodzinski 5 лет назад
Родитель
Сommit
1a59d372d3

+ 1 - 1
packages/ckeditor5-ui/docs/framework/guides/deep-dive/focus-tracking.md

@@ -88,7 +88,7 @@ If you want to focus a particular editable of your editor (not just the first on
 
 If you read the [previous chapter](#focus-in-the-editor-engine) of this guide you should know that there is already a layer responsible for tracking focus working at the engine–level. But while that layer is only concerned by the focus in editor editables, due to the {@link framework/guides/architecture/intro modular nature of the editor framework}, it is oblivious of the user interface. This makes sense, for instance, because it is possible to create a fully–functioning editor without the UI and there should be a minimal API provided by the editor engine that allows that.
 
-As for the user interface of CKEditor, it is a composition of multiple components {@link framework/guides/architecture/ui-library#view-collections-and-the-ui-tree organized as a tree}. This tree determines not only the logical structure of the UI (a toolbar has a dropdown, a dropdown has a button, a button has an icon, etc.) but also its behavior, and that includes tracking and maintaining focus as users navigate and interact with various pieces of the interface.
+As for the user interface of CKEditor, it is a composition of multiple components {@link framework/guides/architecture/ui-library#view-collections-and-the-ui-tree organized as a tree}. This tree determines not only the logical structure of the UI (a toolbar has a dropdown, a dropdown has a button, a button has an icon, etc.) but also its behavior, and that includes tracking and maintaining focus as the user navigates and interacts with various pieces of the interface.
 
 <info-box>
 	Feeling overwhelmed? Take a look at the {@link framework/guides/architecture/ui-library "UI library"} guide and learn some basics about how the UI of CKEditor works and what its main building blocks are.