8
0
Просмотр исходного кода

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

Aleksander Nowodzinski 8 лет назад
Родитель
Сommit
f8be4b82e9
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-alignment/docs/features/text-alignment.md

+ 2 - 2
packages/ckeditor5-alignment/docs/features/text-alignment.md

@@ -24,7 +24,7 @@ ClassicEditor
 			options: [ 'left', 'right' ]
 		},
 		toolbar: [
-			'headings', 'bulletedList', 'numberedList', 'alignmentDropdown', 'undo', 'redo'
+			'headings', '|', 'bulletedList', 'numberedList', 'alignmentDropdown', 'undo', 'redo'
 		]
 	} )
 	.then( ... )
@@ -41,7 +41,7 @@ You can choose to use the alignment dropdown (`'alignmentDropdown'`) or configur
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		toolbar: [
-			'headings', 'alignLeft', 'alignRight', 'alignCenter', 'alignJustify'
+			'headings', '|', 'alignLeft', 'alignRight', 'alignCenter', 'alignJustify'
 		]
 	} )
 	.then( ... )