Procházet zdrojové kódy

Tests: Used article preset in the manual test and standardised the toolbar.

Piotrek Koszuliński před 8 roky
rodič
revize
e2859558a2

+ 2 - 4
packages/ckeditor5-block-quote/tests/manual/blockquote.js

@@ -7,16 +7,14 @@
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classic';
 import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
-import BlockQuote from '../../src/blockquote';
 
 import { getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
 ClassicEditor.create( document.querySelector( '#editor' ), {
 	plugins: [
-		ArticlePreset,
-		BlockQuote
+		ArticlePreset
 	],
-	toolbar: [ 'headings', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
+	toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'blockQuote', 'bulletedList', 'numberedList', 'undo', 'redo' ]
 } )
 .then( editor => {
 	window.editor = editor;