Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Docs: Added indent/outdent buttons. See ckeditor/ckeditor5#1844.
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Oct 16, 2019
1 parent 5f18bd5 commit 358ef26
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion docs/_snippets/features/title.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,18 @@ BaloonBlockEditor.builtinPlugins.push( Title );
BaloonBlockEditor
.create( document.querySelector( '#snippet-title' ), {
cloudServices: CS_CONFIG,
blockToolbar: [ 'bulletedList', 'numberedList', 'imageUpload', 'blockQuote', 'insertTable', 'mediaEmbed' ]
blockToolbar: [
'bulletedList',
'numberedList',
'|',
'outdent',
'indent',
'|',
'imageUpload',
'blockQuote',
'insertTable',
'mediaEmbed'
]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit 358ef26

Please sign in to comment.