8
0
Piotrek Koszuliński 7 лет назад
Родитель
Сommit
e46cf85b4f
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      docs/framework/guides/architecture/ui-library.md

+ 2 - 2
docs/framework/guides/architecture/ui-library.md

@@ -113,7 +113,7 @@ will result in:
 <input class="foo ck-enabled" type="text" placeholder="Type some text" />
 <input class="foo ck-enabled" type="text" placeholder="Type some text" />
 ```
 ```
 
 
-Alternatively, they can [bind](#event-system-and-observables) them directly to their own observable properties:
+Alternatively, they can {@link framework/guides/architecture/core-editor-architecture#event-system-and-observables bind} them directly to their own observable properties:
 
 
 ```js
 ```js
 view.bind( 'placeholder', 'isEnabled' ).to( observable, 'placeholderText', 'isEnabled' );
 view.bind( 'placeholder', 'isEnabled' ).to( observable, 'placeholderText', 'isEnabled' );
@@ -154,7 +154,7 @@ view.element.placeholder = 'A new placeholder';
 	Check out the {@link module:ui/template~TemplateDefinition} to learn more about the template syntax and other advanced concepts.
 	Check out the {@link module:ui/template~TemplateDefinition} to learn more about the template syntax and other advanced concepts.
 </info-box>
 </info-box>
 
 
-Templates support [observable properties](#event-system-and-observables) bindings and handle native DOM events. A very simple template can look like this:
+Templates support {@link framework/guides/architecture/core-editor-architecture#event-system-and-observables observable properties} bindings and handle native DOM events. A very simple template can look like this:
 
 
 ```js
 ```js
 new Template( {
 new Template( {