Browse Source

Tests: Standardised the toolbar... again (aligned it to CKEditor 4). [skip ci]

Piotrek Koszuliński 8 years ago
parent
commit
68840cd191
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-essentials/tests/manual/article.js

+ 1 - 1
packages/ckeditor5-essentials/tests/manual/article.js

@@ -11,7 +11,7 @@ import ArticlePreset from '../../src/article';
 
 ClassicEditor.create( document.querySelector( '#editor' ), {
 	plugins: [ ArticlePreset ],
-	toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'blockQuote', 'bulletedList', 'numberedList', 'undo', 'redo' ]
+	toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
 } )
 .then( editor => {
 	window.editor = editor;