Parcourir la source

Added a separator after the headings dropdown in the configuration of the toolbar.

Aleksander Nowodzinski il y a 7 ans
Parent
commit
073b7eadc8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      packages/ckeditor5-enter/tests/manual/enter.js

+ 1 - 1
packages/ckeditor5-enter/tests/manual/enter.js

@@ -16,7 +16,7 @@ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [ Enter, Typing, Heading, Undo, Bold, Italic ],
-		toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
+		toolbar: [ 'headings', '|', 'bold', 'italic', 'undo', 'redo' ]
 	} )
 	.then( editor => {
 		window.editor = editor;