Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

T/645: Updated documentation and samples to consider the updates in the Lark #800

Merged
merged 12 commits into from
Feb 2, 2018
2 changes: 1 addition & 1 deletion docs/_snippets/examples/inline-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/builds/guides/development/custom-builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion docs/builds/guides/integration/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand Down