소스 검색

Update docs.

panr 5 년 전
부모
커밋
7f1470e2f4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/ckeditor5-image/docs/features/image.md

+ 1 - 1
packages/ckeditor5-image/docs/features/image.md

@@ -338,7 +338,7 @@ const imageConfiguration = {
 
 ### Disabling image resize handles
 
-If for some reason you want to configure the editor where you can resize the images only by image toolbar UI, you can do it by omitting {@link module:image/imageresize/imageresizehandles~ImageResizeHandles `ImageResizeHandles`} plugin. This means that your plugins setup will look like this: `plugins: [ ... , 'ImageResizeEditing', 'ImageResizeButtons', ... ]` instead of `plugins: [ ... , 'ImageResize', ... ]`. It will only enable resizing image feature by the chosen UI ([dropdown](#using-the-dropdown) or [standalone buttons](#using-standalone-buttons)) in the image toolbar.
+If for some reason you want to configure the editor where you can resize the images only by the buttons, you can do it by omitting {@link module:image/imageresize/imageresizehandles~ImageResizeHandles `ImageResizeHandles`} plugin. This means that your plugins setup should look like this: `plugins: [ 'ImageResizeEditing', 'ImageResizeButtons', ... ]` instead of `plugins: [ 'ImageResize', ... ]`. It will only enable resizing image feature by the chosen UI ([dropdown](#using-the-dropdown) or [standalone buttons](#using-standalone-buttons)) in the image toolbar.
 
 ```js
 import Image from '@ckeditor/ckeditor5-image/src/image';