Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Added a separator after the headings dropdown in the configuration of…
Browse files Browse the repository at this point in the history
… the toolbar.
  • Loading branch information
oleq committed Jan 24, 2018
1 parent d00c24c commit 4ec791c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/manual/highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class FancyWidget extends Plugin {

ClassicEditor.create( global.document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic, List, FancyWidget ],
toolbar: [ 'headings', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
toolbar: [ 'headings', '|', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/markers.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ let _uid = 1;
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Bold, Italic, List, Heading, Undo ],
toolbar: [ 'headings', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/placeholder.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { attachPlaceholder } from '../../src/view/placeholder';
ClassicEditor
.create( global.document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading ],
toolbar: [ 'headings', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'undo', 'redo' ]
} )
.then( editor => {
const viewDoc = editor.editing.view;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/603/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Heading, Bold, Italic ],
toolbar: [ 'headings', 'bold', 'italic' ]
toolbar: [ 'headings', '|', 'bold', 'italic' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit 4ec791c

Please sign in to comment.