Explorar o código

Docs: Mentioned the imageUpload button. Closes ckeditor/ckeditor5#786.

Piotrek Koszuliński %!s(int64=7) %!d(string=hai) anos
pai
achega
5751eba9ba
Modificáronse 1 ficheiros con 7 adicións e 2 borrados
  1. 7 2
      packages/ckeditor5-image/docs/features/image.md

+ 7 - 2
packages/ckeditor5-image/docs/features/image.md

@@ -210,16 +210,21 @@ If you are using an editor build, see how to {@link builds/guides/development/cu
 The {@link module:image/image~Image} plugin registers:
 The {@link module:image/image~Image} plugin registers:
 
 
 * The `'imageTextAlternative'` button.
 * The `'imageTextAlternative'` button.
+* * The {@link module:image/imagetextalternative/imagetextalternativecommand~ImageTextAlternativeCommand `'imageTextAlternative'` command}
 
 
 The {@link module:image/imagestyle~ImageStyle} plugin registers:
 The {@link module:image/imagestyle~ImageStyle} plugin registers:
 
 
-* The `'imageStyle'` command that accepts value based on the {@link module:image/image~ImageConfig#styles `image.styles`} configuration option (e.g. `'full'` and `'side'`):
+* A button for each defined style — e.g. `'imageStyle:full'` and `'imageStyle:side'`.
+* The {@link module:image/imagestyle/imagestylecommand~ImageStyleCommand `'imageStyle'` command} which accepts value based on the {@link module:image/image~ImageConfig#styles `image.styles`} configuration option (e.g. `'full'` and `'side'`):
 
 
 	```js
 	```js
 	editor.execute( 'imageStyle', { value: 'side' } );
 	editor.execute( 'imageStyle', { value: 'side' } );
 	```
 	```
 
 
-* A button for each defined style — e.g. `'imageStyle:full'` and `'imageStyle:side'`.
+The {@link module:image/imageupload~ImageUpload} plugin registers:
+
+* The `'imageUpload'` button which opens the native file browser to ley you upload a file directly from your disk.
+* The {@link module:image/imageupload/imageuploadcommand~ImageUploadCommand `'imageUpload'` command} which accepts the file to upload.
 
 
 ## Contribute
 ## Contribute