소스 검색

Docs: Added a missing link to ViewDocument#isFocused.

Aleksander Nowodzinski 5 년 전
부모
커밋
be9aee2042
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-ui/docs/framework/guides/deep-dive/focus-tracking.md

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

@@ -48,7 +48,7 @@ Each root of the editing view has the `contenteditable` attribute. The editing v
 
 ### Checking if the view document is focused
 
-You can check if the view document is focused using its {@link framework/guides/deep-dive/observables observable} `isFocused` property. Create an editor instance and execute the following code:
+You can check if the view document is focused using its {@link framework/guides/deep-dive/observables observable} {@link module:engine/view/document~Document#isFocused} property. Create an editor instance and execute the following code:
 
 ```js
 console.log( editor.editing.view.document.isFocused );