Skip to content

Commit

Permalink
Merge pull request #9508 from ckeditor/i/9144-updated-snippets
Browse files Browse the repository at this point in the history
Docs (image): All of the editor build configurations and snippets are updated to show the inline images UI. See #9144.
Internal (image): All of the manual tests are updated to show the inline images UI. See #9144.
  • Loading branch information
oleq authored Apr 20, 2021
2 parents 76899a2 + 974df2d commit da9dc99
Show file tree
Hide file tree
Showing 126 changed files with 201 additions and 343 deletions.
2 changes: 1 addition & 1 deletion docs/_snippets/examples/balloon-block-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<h2>Taj Mahal: A breathtaking ode to love</h2>

<figure class="image image-style-side" height="400">
<img src="%BASE_PATH%/assets/img/tajmahal.jpg" alt="Taj Mahal illustration.">
<img src="%BASE_PATH%/assets/img/tajmahal.jpg" srcset="%BASE_PATH%/assets/img/tajmahal.jpg, %BASE_PATH%/assets/img/tajmahal_2x.jpg 2x" alt="Taj Mahal illustration.">
<figcaption>Taj Mahal with its poetic white marble tomb</figcaption>
</figure>

Expand Down
4 changes: 2 additions & 2 deletions docs/_snippets/examples/classic-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ <h2>The three greatest things you learn from traveling</h2>

<p>Like all the great things on earth traveling teaches us by example. Here are some of the most precious lessons I’ve learned over the years of traveling.</p>

<figure class="image image-style-side"><img src="%BASE_PATH%/assets/img/volcano.jpg" alt="A lone wanderer looking at Mount Bromo volcano in Indonesia.">
<figure class="image image-style-side"><img src="%BASE_PATH%/assets/img/volcano.jpg" srcset="%BASE_PATH%/assets/img/volcano.jpg, %BASE_PATH%/assets/img/volcano_2x.jpg 2x" alt="A lone wanderer looking at Mount Bromo volcano in Indonesia.">
<figcaption>Leaving your comfort zone might lead you to such beautiful sceneries like this one.</figcaption>
</figure>

Expand All @@ -25,7 +25,7 @@ <h3>Improvisation</h3>
<li>start your adventure</li>
</ul>

<figure class="image image-style-side"><img src="%BASE_PATH%/assets/img/umbrellas.jpg" alt="Three Monks walking on ancient temple.">
<figure class="image image-style-side"><img src="%BASE_PATH%/assets/img/umbrellas.jpg" srcset="%BASE_PATH%/assets/img/umbrellas.jpg, %BASE_PATH%/assets/img/umbrellas_2x.jpg 2x" alt="Three Monks walking on ancient temple.">
<figcaption>Leaving your comfort zone might lead you to such beautiful sceneries like this one.</figcaption>
</figure>

Expand Down
3 changes: 2 additions & 1 deletion docs/_snippets/examples/document-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ <h3 style="text-align:center;">Welcome letter</h3>

<p>Dear Guest,</p>
<p>We are delighted to welcome you to the annual <i>Flavorful Tuscany Meetup</i> and hope you will enjoy the programme as well as your stay at the <a href="http://ckeditor.com">Bilancino Hotel</a>.</p>
<figure class="image"><img src="%BASE_PATH%/assets/img/malta.jpg" srcset="%BASE_PATH%/assets/img/malta.jpg, %BASE_PATH%/assets/img//malta_2x.jpg 2x" alt="Bilancino Hotel" /><figcaption>Bilancino Hotel</figcaption></figure>
<p>Please find below the full schedule of the event.</p>

<figure class="table">
Expand Down Expand Up @@ -52,7 +53,7 @@ <h3 style="text-align:center;">Welcome letter</h3>
<p>Please arrive at the <a href="http://ckeditor.com">Bilancino Hotel</a> reception desk <span style="background-color:hsl(60, 75%, 60%)">at least half an hour earlier</span> to make sure that the registration process goes as smoothly as possible.</p>

<p>We look forward to welcoming you to the event.</p>

<p><img class="image_resized" style="width: 180px;" src="https://c.cksource.com/a/1/img/docs/signature.png" alt="Victoria Valc signature" /></p>
<p><strong>Victoria Valc</strong></p>
<p><strong>Event Manager</strong></p>
<p><strong>Bilancino Hotel</strong></p>
Expand Down
7 changes: 1 addition & 6 deletions docs/_snippets/examples/document-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,7 @@ import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud
DecoupledEditor
.create( document.querySelector( '.document-editor__editable' ), {
extraPlugins: [ ImageResize ],
cloudServices: CS_CONFIG,
image: {
toolbar: [
'toggleImageCaption', 'imageTextAlternative', '|', 'imageStyle:alignLeft', 'imageStyle:full', 'imageStyle:alignRight'
]
}
cloudServices: CS_CONFIG
} )
.then( editor => {
const toolbarContainer = document.querySelector( '.document-editor__toolbar' );
Expand Down
2 changes: 1 addition & 1 deletion docs/_snippets/examples/inline-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h3>Destination of the Month</h3>
<h4>Valletta</h4>

<figure class="image image-style-align-right" style="width: 50%;">
<img alt="Picture of a sunlit facade of a Maltan building." src="%BASE_PATH%/assets/img/malta.jpg">
<img alt="Picture of a sunlit facade of a Maltan building." src="%BASE_PATH%/assets/img/malta.jpg" srcset="%BASE_PATH%/assets/img/malta.jpg, %BASE_PATH%/assets/img/malta_2x.jpg 2x">
<figcaption>It's siesta time in Valletta.</figcaption>
</figure>

Expand Down
28 changes: 3 additions & 25 deletions docs/_snippets/examples/inline-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
/* globals console, window, document */

import InlineEditor from '@ckeditor/ckeditor5-build-inline/src/ckeditor';
import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize';
import { CS_CONFIG } from '@ckeditor/ckeditor5-cloud-services/tests/_utils/cloud-services-config';

const inlineInjectElements = document.querySelectorAll( '#snippet-inline-editor [data-inline-inject]' );
Expand Down Expand Up @@ -34,32 +33,11 @@ Array.from( inlineInjectElements ).forEach( inlineElement => {
];
config.toolbar.items = [ 'heading', '|', 'bold', 'italic', 'link' ];
} else {
config.extraPlugins = [ ImageResize ];
config.image = {
resizeOptions: [
{
name: 'resizeImage:original',
label: 'Original',
value: null
},
{
name: 'resizeImage:50',
label: '50%',
value: '50'
},
{
name: 'resizeImage:75',
label: '75%',
value: '75'
}
],
styles: [ 'full', 'alignLeft', 'alignRight' ],
toolbar: [
'imageStyle:alignLeft',
'imageStyle:full',
'imageStyle:alignRight',
'|',
'resizeImage',
'imageStyle:inline',
'imageStyle:wrapText',
'imageStyle:breakText',
'|',
'toggleImageCaption',
'imageTextAlternative'
Expand Down
2 changes: 1 addition & 1 deletion docs/_snippets/examples/multi-root-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ <h3>Destination of the Month</h3>
<h4>Valletta</h4>

<figure class="image image-style-side">
<img alt="Picture of a sunlit facade of a Maltan building." src="%BASE_PATH%/assets/img/malta.jpg">
<img alt="Picture of a sunlit facade of a Maltan building." src="%BASE_PATH%/assets/img/malta.jpg" srcset="%BASE_PATH%/assets/img/malta.jpg, %BASE_PATH%/assets/img/malta_2x.jpg 2x">
<figcaption>It's siesta time in Valletta.</figcaption>
</figure>

Expand Down
5 changes: 2 additions & 3 deletions docs/_snippets/examples/multi-root-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,9 +398,8 @@ MultirootEditor
'insertTable', 'mediaEmbed', 'undo', 'redo' ],
image: {
toolbar: [
'toggleImageCaption', 'imageTextAlternative', '|', 'imageStyle:full', 'imageStyle:side'
],
styles: [ 'full', 'side' ]
'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative'
]
},
table: {
contentToolbar: [
Expand Down
11 changes: 3 additions & 8 deletions docs/_snippets/features/mathtype.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,10 @@ ClassicEditor
viewportTopOffset: window.getViewportTopOffsetConfig()
},
image: {
styles: [
'full',
'alignLeft',
'alignRight'
],
toolbar: [
'imageStyle:alignLeft',
'imageStyle:full',
'imageStyle:alignRight',
'imageStyle:inline',
'imageStyle:wrapText',
'imageStyle:breakText',
'|',
'toggleImageCaption',
'imageTextAlternative'
Expand Down
2 changes: 1 addition & 1 deletion docs/_snippets/features/toolbar-breakpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ ClassicEditor
viewportTopOffset: window.getViewportTopOffsetConfig()
},
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
},
codeBlock: {
languages: [
Expand Down
2 changes: 1 addition & 1 deletion docs/_snippets/features/toolbar-grouping.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ClassicEditor
viewportTopOffset: window.getViewportTopOffsetConfig()
},
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
},
codeBlock: {
languages: [
Expand Down
2 changes: 1 addition & 1 deletion docs/_snippets/features/toolbar-wrapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ ClassicEditor
viewportTopOffset: window.getViewportTopOffsetConfig()
},
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
},
codeBlock: {
languages: [
Expand Down
11 changes: 3 additions & 8 deletions docs/_snippets/features/wproofreader.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,10 @@ ClassicEditor
viewportTopOffset: window.getViewportTopOffsetConfig()
},
image: {
styles: [
'full',
'alignLeft',
'alignRight'
],
toolbar: [
'imageStyle:alignLeft',
'imageStyle:full',
'imageStyle:alignRight',
'imageStyle:inline',
'imageStyle:wrapText',
'imageStyle:breakText',
'|',
'toggleImageCaption',
'imageTextAlternative'
Expand Down
Binary file modified docs/assets/img/fields.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/fields_2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/img/malta.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/malta_2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/img/tajmahal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/tajmahal_2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/img/umbrellas.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/umbrellas_2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/assets/img/volcano.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/volcano_2x.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/builds/guides/development/dll-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ For example:
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
2 changes: 2 additions & 0 deletions docs/builds/guides/integration/advanced-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ ClassicEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down Expand Up @@ -352,6 +353,7 @@ ClassicEditor
],
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
1 change: 1 addition & 0 deletions docs/builds/guides/integration/installing-plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ ClassicEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
3 changes: 1 addition & 2 deletions docs/framework/guides/custom-editor-creator.md
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,7 @@ MultirootEditor
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'uploadImage', 'blockQuote',
'insertTable', 'mediaEmbed', 'undo', 'redo' ],
image: {
toolbar: [ 'toggleImageCaption', 'imageTextAlternative', '|', 'imageStyle:alignLeft', 'imageStyle:full', 'imageStyle:alignRight' ],
styles: [ 'full', 'alignLeft', 'alignRight' ]
toolbar: [ 'toggleImageCaption', 'imageTextAlternative', '|', 'imageStyle:inline', 'imageStyle:wrapText', 'imageStyle:breakText' ],
},
table: {
contentToolbar: [
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon-block/build/ckeditor.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/ckeditor5-build-balloon-block/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ BalloonEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon/build/ckeditor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-balloon/build/ckeditor.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/ckeditor5-build-balloon/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ BalloonEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-classic/build/ckeditor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-classic/build/ckeditor.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/ckeditor5-build-classic/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ ClassicEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

11 changes: 3 additions & 8 deletions packages/ckeditor5-build-decoupled-document/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,10 @@ DecoupledEditor.defaultConfig = {
]
},
image: {
styles: [
'full',
'alignLeft',
'alignRight'
],
toolbar: [
'imageStyle:alignLeft',
'imageStyle:full',
'imageStyle:alignRight',
'imageStyle:inline',
'imageStyle:wrapText',
'imageStyle:breakText',
'|',
'toggleImageCaption',
'imageTextAlternative'
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-build-inline/build/ckeditor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/ckeditor5-build-inline/build/ckeditor.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/ckeditor5-build-inline/src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ InlineEditor.defaultConfig = {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-ckfinder/tests/manual/ckfinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ClassicEditor
plugins: [ ArticlePluginSet, ImageUpload, CKFinderUploadAdapter, CKFinder ],
toolbar: [ 'heading', '|', 'undo', 'redo', 'ckfinder' ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
},
ckfinder: {
// eslint-disable-next-line max-len
Expand Down
7 changes: 1 addition & 6 deletions packages/ckeditor5-clipboard/tests/manual/dragdrop.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,9 @@ ClassicEditor
contentToolbar: [ 'tableColumn', 'tableRow', 'mergeTableCells' ]
},
image: {
styles: [
'alignCenter',
'alignLeft',
'alignRight'
],
toolbar: [
'imageTextAlternative', '|',
'imageStyle:alignLeft', 'imageStyle:alignCenter', 'imageStyle:alignRight', '|',
'imageStyle:inline', 'imageStyle:wrapText', 'imageStyle:breakText', '|',
'resizeImage'
]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-core/tests/manual/readonly.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ClassicEditor
plugins: [ ArticlePluginSet, BalloonToolbar ],
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
},
balloonToolbar: [ 'bold', 'italic', 'link' ]
} )
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-easy-image/tests/manual/easyimage.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ClassicEditor
'redo'
],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
},
table: {
contentToolbar: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function initEditors() {
plugins: [ ArticlePluginSet ],
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'imageTextAlternative' ]
}
} )
.then( editor => {
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5-editor-balloon/tests/manual/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ function initEditors() {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5-editor-classic/tests/manual/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function initEditor() {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5-editor-decoupled/tests/manual/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ function initEditor() {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
1 change: 1 addition & 0 deletions packages/ckeditor5-editor-inline/tests/manual/memory.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ function initEditors() {
},
image: {
toolbar: [
'imageStyle:inline',
'imageStyle:full',
'imageStyle:side',
'|',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ ClassicEditor
cloudServices: CS_CONFIG,
extraPlugins: [ ComplexBox ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
},
table: {
contentToolbar: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ ClassicEditor
cloudServices: CS_CONFIG,
extraPlugins: [ InfoBox ],
image: {
toolbar: [ 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
toolbar: [ 'imageStyle:inline', 'imageStyle:full', 'imageStyle:side', '|', 'toggleImageCaption', 'imageTextAlternative' ]
},
table: {
contentToolbar: [
Expand Down
Loading

0 comments on commit da9dc99

Please sign in to comment.