Skip to content

Commit

Permalink
Merge stable into master
Browse files Browse the repository at this point in the history
  • Loading branch information
CKTravisBot committed Mar 20, 2023
2 parents ef1e309 + 6f31832 commit e0a26ae
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/ckeditor5-ui/docs/_snippets/features/blocktoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,23 @@ BalloonEditor
.create( document.querySelector( '#snippet-block-toolbar' ), {
plugins: BalloonEditor.builtinPlugins.concat( [ BlockToolbar, ParagraphButtonUI, HeadingButtonsUI ] ),
toolbar: {
items: [ 'bold', 'italic', 'link', 'undo', 'redo' ]
items: [ 'bold', 'italic', '|', 'link' ]
},
ui: {
viewportOffset: {
top: window.getViewportTopOffsetConfig()
}
},
blockToolbar: [
'undo', 'redo',
'|',
'paragraph', 'heading1', 'heading2', 'heading3',
'|',
'bulletedList', 'numberedList',
'uploadImage', 'blockQuote',
'|',
'outdent', 'indent',
'bulletedList', 'numberedList',
'|',
'blockQuote', 'uploadImage'
'outdent', 'indent'
],
cloudServices: CS_CONFIG
} )
Expand Down

0 comments on commit e0a26ae

Please sign in to comment.