Bladeren bron

Merge pull request #68 from ckeditor/t/ckeditor5/645

Tests: Minor adjustments in toolbar configurations (see ckeditor/ckeditor5#645).
Piotrek Koszuliński 7 jaren geleden
bovenliggende
commit
e6482b24aa

+ 1 - 1
packages/ckeditor5-editor-classic/tests/manual/classiceditor.js

@@ -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 );

+ 1 - 1
packages/ckeditor5-editor-classic/tests/manual/tickets/60/1.js

@@ -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
 		}
 	} )