Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Internal: The ckeditor5-presets became ckeditor5-essentials. See cked…
Browse files Browse the repository at this point in the history
…itor/ckeditor5-essentials#1.
  • Loading branch information
Reinmar committed Sep 8, 2017
1 parent 059547d commit 3492420
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/manual/tickets/880/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
/* globals console, window, document */

import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
import EssentialsPreset from '@ckeditor/ckeditor5-presets/src/essentials';
import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';

ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ EssentialsPreset, Paragraph, Bold ],
plugins: [ Essentials, Paragraph, Bold ],
toolbar: [ 'undo', 'redo' ]
} )
.then( editor => {
Expand Down
4 changes: 2 additions & 2 deletions tests/manual/tickets/887/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
/* globals console, window, document */

import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
import EssentialsPreset from '@ckeditor/ckeditor5-presets/src/essentials';
import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';

ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ EssentialsPreset, Paragraph, Bold ],
plugins: [ Essentials, Paragraph, Bold ],
toolbar: [ 'undo', 'redo' ]
} )
.then( editor => {
Expand Down

0 comments on commit 3492420

Please sign in to comment.