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

Commit 18ccb43

Browse files
authored
Merge pull request #36 from ckeditor/t/ckeditor5/645
Other: Adjusted toolbar configuration of the build (see ckeditor/ckeditor5#645).
2 parents adc943e + 475e580 commit 18ccb43

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

build-config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ module.exports = {
3838
toolbar: {
3939
items: [
4040
'headings',
41+
'|',
4142
'bold',
4243
'italic',
4344
'link',

src/ckeditor.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ ClassicEditor.build = {
4646
toolbar: {
4747
items: [
4848
'headings',
49+
'|',
4950
'bold',
5051
'italic',
5152
'link',

tests/ckeditor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ describe( 'ClassicEditor build', () => {
195195
.then( newEditor => {
196196
editor = newEditor;
197197

198-
expect( editor.ui.view.toolbar.items.length ).to.equal( 9 );
198+
expect( editor.ui.view.toolbar.items.length ).to.equal( 10 );
199199
expect( editor.ui.view.stickyPanel.viewportTopOffset ).to.equal( 42 );
200200
} );
201201
} );

0 commit comments

Comments
 (0)