Browse Source

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

Piotrek Koszuliński 8 years ago
parent
commit
734fede274

+ 2 - 2
packages/ckeditor5-editor-inline/tests/manual/inlineeditor.js

@@ -6,7 +6,7 @@
 /* globals console:false, document, window */
 
 import InlineEditor from '../../src/inlineeditor';
-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 ) {
 		InlineEditor
 			.create( document.querySelector( selector ), {
-				plugins: [ ArticlePreset ],
+				plugins: [ ArticlePluginSet ],
 				toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
 			} )
 			.then( editor => {

+ 2 - 2
packages/ckeditor5-editor-inline/tests/manual/tickets/4/1.js

@@ -6,11 +6,11 @@
 /* globals console:false, document, window */
 
 import InlineEditor from '../../../../src/inlineeditor';
-import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
+import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
 
 InlineEditor
 	.create( document.querySelector( '#editor' ), {
-		plugins: [ ArticlePreset ],
+		plugins: [ ArticlePluginSet ],
 		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
 	} )
 	.then( editor => {