Browse Source

Docs: Mentioned the "Deep dive into focus tracking" guide in the custom editor guide.

Aleksander Nowodzinski 5 years ago
parent
commit
bed8a53558
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/framework/guides/custom-editor-creator.md

+ 1 - 1
docs/framework/guides/custom-editor-creator.md

@@ -121,7 +121,7 @@ mix( MultirootEditor, DataApiMixin );
 
 ## EditorUI class
 
-The `*EditorUI` class is the main UI class which initializes UI components (the main view and the toolbar) and sets up mechanisms like focus tracker or placeholder management. The custom `*EditorUI` class should extend the {@link module:core/editor/editorui~EditorUI base `EditorUI` class} like below:
+The `*EditorUI` class is the main UI class which initializes UI components (the main view and the toolbar) and sets up mechanisms like {@link framework/guides/deep-dive/focus-tracking#using-the-focustracker-class focus tracker} or placeholder management. The custom `*EditorUI` class should extend the {@link module:core/editor/editorui~EditorUI base `EditorUI` class} like below:
 
 ```js
 import EditorUI from '@ckeditor/ckeditor5-core/src/editor/editorui';