8
0
Просмотр исходного кода

Tests: Updated image toolbar settin in the manual test.

Piotrek Koszuliński 8 лет назад
Родитель
Сommit
f94be58ea5
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      packages/ckeditor5-essentials/tests/manual/article.js

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

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