Przeglądaj źródła

Internal: Article preset was moved to the core. See ckeditor/ckeditor5-core#104.

Piotrek Koszuliński 8 lat temu
rodzic
commit
1e169766c4

+ 2 - 2
packages/ckeditor5-editor-balloon/tests/manual/ballooneditor.js

@@ -6,7 +6,7 @@
 /* globals console:false, document, window */
 
 import BalloonEditor from '../../src/ballooneditor';
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
 import testUtils from '@ckeditor/ckeditor5-utils/tests/_utils/utils';
 
 window.editors = {};
@@ -20,7 +20,7 @@ function initEditors() {
 	function init( selector ) {
 		BalloonEditor
 			.create( document.querySelector( selector ), {
-				plugins: [ ArticlePreset ],
+				plugins: [ ArticlePluginSet ],
 				toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ],
 				image: {
 					toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]