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

update ckeditor.js #89

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefrom
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';

export default class ClassicEditor extends ClassicEditorBase {}
class ClassicEditor extends ClassicEditorBase {}

// Plugins to include in the build.
ClassicEditor.builtinPlugins = [
Expand Down Expand Up @@ -92,3 +92,5 @@ ClassicEditor.defaultConfig = {
// This value must be kept in sync with the language defined in webpack.config.js.
language: 'en'
};

export default ClassicEditor;