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

Commit

Permalink
Other: Renamed the ClassicEditor file to "classiceditor.js" to match …
Browse files Browse the repository at this point in the history
…the naming convention. Closes #41.

BREAKING CHANGE: The `classic.js` file containing `ClassicEditor` class has been renamed to `classiceditor.js`.
  • Loading branch information
szymonkups committed Jun 19, 2017
2 parents b824a1d + 78afb44 commit c5714ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/classic.js → src/classiceditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

/**
* @module editor-classic/classic
* @module editor-classic/classiceditor
*/

import StandardEditor from '@ckeditor/ckeditor5-core/src/editor/standardeditor';
Expand Down Expand Up @@ -74,8 +74,8 @@ export default class ClassicEditor extends StandardEditor {
* console.error( err.stack );
* } );
*
* @param {HTMLElement} element See {@link module:editor-classic/classic~ClassicEditor#constructor}'s parameters.
* @param {Object} config See {@link module:editor-classic/classic~ClassicEditor#constructor}'s parameters.
* @param {HTMLElement} element See {@link module:editor-classic/classiceditor~ClassicEditor#constructor}'s parameters.
* @param {Object} config See {@link module:editor-classic/classiceditor~ClassicEditor#constructor}'s parameters.
* @returns {Promise} A promise resolved once the editor is ready.
* @returns {module:core/editor/standardeditor~StandardEditor} return.editor The editor instance.
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/classic.js → tests/classiceditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import ClassicEditorUIView from '../src/classiceditoruiview';

import HtmlDataProcessor from '@ckeditor/ckeditor5-engine/src/dataprocessor/htmldataprocessor';

import ClassicEditor from '../src/classic';
import ClassicEditor from '../src/classiceditor';
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/classic.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/* globals console:false, document, window */

import ClassicEditor from '../../src/classic';
import ClassicEditor from '../../src/classiceditor';
import Enter from '@ckeditor/ckeditor5-enter/src/enter';
import Typing from '@ckeditor/ckeditor5-typing/src/typing';
import Heading from '@ckeditor/ckeditor5-heading/src/heading';
Expand Down

0 comments on commit c5714ba

Please sign in to comment.