8
0
Quellcode durchsuchen

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

Aleksander Nowodzinski vor 7 Jahren
Ursprung
Commit
351c2c90eb

+ 1 - 1
docs/builds/guides/development/custom-builds.md

@@ -112,7 +112,7 @@ module.exports = {
 
 	// Editor configuration.
 	config: {
-		toolbar: [ 'headings', 'bold', 'italic', 'custombutton' ],
+		toolbar: [ 'headings', '|', 'bold', 'italic', 'custombutton' ],
 
 		// UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format.
 		language: 'en'

+ 1 - 1
docs/builds/guides/integration/configuration.md

@@ -15,7 +15,7 @@ When creating an editor in your page, it is possible to set up {@link module:cor
 ```js
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
-		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
+		toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
 		heading: {
 			options: [
 				{ modelElement: 'paragraph', title: 'Paragraph', class: 'ck-heading_paragraph' },