Przeglądaj źródła

Merge pull request #800 from ckeditor/t/645

Docs: Updated documentation and samples to consider the updates in the refreshed Lark theme. Closes #645.
Piotrek Koszuliński 8 lat temu
rodzic
commit
5368aab495

+ 1 - 1
docs/_snippets/examples/inline-editor.js

@@ -36,7 +36,7 @@ Array.from( inlineInjectElements ).forEach( inlineElement => {
 			'EasyImage',
 			'CKFinderUploadAdapter'
 		];
-		config.toolbar.items = [ 'headings', 'bold', 'italic', 'link' ];
+		config.toolbar.items = [ 'headings', '|', 'bold', 'italic', 'link' ];
 	}
 
 	InlineEditor

+ 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' },