8
0
Piotrek Koszuliński 6 лет назад
Родитель
Сommit
f7400dfed0

+ 4 - 0
docs/builds/guides/development/custom-builds.md

@@ -21,6 +21,10 @@ Some of the reasons for creating custom builds are:
 * Changing the {@link features/ui-language localization language} of the editor.
 * Enabling bug fixes which are still not a part of any public release.
 
+<info-box hint>
+	If you are looking for an easy way to create a custom build of CKEditor 5, check also the [online builder](https://ckeditor.com/ckeditor-5/online-builder/), which allows you to create easily a custom build through a simple and intuitive UI.
+</info-box>
+
 ## Requirements
 
 In order to start developing CKEditor 5 you will require:

+ 1 - 0
docs/builds/guides/frameworks/react.md

@@ -72,6 +72,7 @@ The `<CKEditor>` component supports the following properties:
 * `onChange` &ndash; A function called when the editor data has changed. See the {@link module:engine/model/document~Document#event:change:data `editor.model.document#change:data`} event.
 * `onBlur` &ndash; A function called when the editor was blurred. See the {@link module:engine/view/document~Document#event:blur `editor.editing.view.document#blur`} event.
 * `onFocus` &ndash; A function called when the editor was focused. See the {@link module:engine/view/document~Document#event:focus `editor.editing.view.document#focus`} event.
+* `onError` &ndash; A function called when the editor has crashed during the initialization. It receives the error object as a parameter.
 
 The editor events callbacks (`onChange`, `onBlur`, `onFocus`) receive two parameters:
 

+ 5 - 1
docs/builds/guides/integration/installation.md

@@ -14,6 +14,7 @@ There are several options to download CKEditor 5 builds:
 
 * [CDN](#cdn)
 * [npm](#npm)
+* [Online builder](#online-builder)
 * [Zip download](#zip-download)
 
 For the list of available builds check the {@link builds/guides/overview#available-builds Overview} page.
@@ -44,6 +45,10 @@ npm install --save @ckeditor/ckeditor5-build-decoupled-document
 
 CKEditor will then be available at `node_modules/@ckeditor/ckeditor5-build-[name]/build/ckeditor.js`. It can also be imported directly to your code by `require( '@ckeditor/ckeditor5-build-[name]' )`.
 
+### Online builder
+
+The [online builder](https://ckeditor.com/ckeditor-5/online-builder/) lets you download CKEditor 5 builds and also allows you to create your own, customized builds (with a different set of plugins) in a few easy steps, through a simple and intuitive UI.
+
 ### Zip download
 
 Go to the [CKEditor 5 builds download page](https://ckeditor.com/ckeditor-5-builds/download/) and download your preferred build. For example, you may download the `ckeditor5-build-classic-1.0.0.zip` file for the Classic editor build.
@@ -73,4 +78,3 @@ Once the CKEditor script is loaded, you can {@link builds/guides/integration/bas
 	Also, for a more advanced setup, you may wish to bundle the CKEditor script with other scripts used by your application. See {@link builds/guides/integration/advanced-setup Advanced setup} for more information about it.
 </info-box>
 
-

+ 4 - 0
docs/builds/guides/integration/installing-plugins.md

@@ -13,6 +13,10 @@ In this guide you can learn how to add plugins to your editor in the two most co
 * When you use an {@link builds/guides/overview editor build},
 * When you {@link framework/guides/quick-start build your editor from source}.
 
+<info-box hint>
+	If you are looking for an easy way to create a custom build of CKEditor 5 without installing anything, check the [online builder](https://ckeditor.com/ckeditor-5/online-builder/), which allows you to create easily a build with a custom set of plugins through a simple and intuitive UI.
+</info-box>
+
 ## Requirements
 
 In order to start developing CKEditor 5 you will require: