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

Commit

Permalink
Merge pull request #68 from ckeditor/t/ckeditor5/645
Browse files Browse the repository at this point in the history
Tests: Minor adjustments in toolbar configurations (see ckeditor/ckeditor5#645).
  • Loading branch information
Reinmar committed Feb 2, 2018
2 parents 91ce912 + 51073f9 commit ed124d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/manual/classiceditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function initEditor() {
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic ],
toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
toolbar: [ 'headings', '|', 'bold', 'italic', 'undo', 'redo' ]
} )
.then( newEditor => {
console.log( 'Editor was initialized', newEditor );
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/60/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic ],
toolbar: {
items: [ 'headings', 'bold', 'italic', 'undo', 'redo' ],
items: [ 'headings', '|', 'bold', 'italic', 'undo', 'redo' ],
viewportTopOffset: 100
}
} )
Expand Down

0 comments on commit ed124d2

Please sign in to comment.