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

Commit

Permalink
Merge pull request #21 from ckeditor/t/20
Browse files Browse the repository at this point in the history
Changed paths and docs to use ckeditor5-core package
  • Loading branch information
scofalik authored Aug 3, 2016
2 parents c8554de + 38c318b commit 63683c6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/enter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
* For licensing, see LICENSE.md.
*/

import Feature from '../feature.js';
import Feature from '../core/feature.js';
import EnterCommand from './entercommand.js';
import EnterObserver from './enterobserver.js';

/**
* The Enter feature. Handles the <kbd>Enter</kbd> and <kbd>Shift + Enter</kbd> keys in the editor.
*
* @memberOf enter
* @extends ckeditor5.Feature
* @extends core.Feature
*/
export default class Enter extends Feature {
init() {
Expand Down
4 changes: 2 additions & 2 deletions src/entercommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see LICENSE.md.
*/

import Command from '../command/command.js';
import Command from '../core/command/command.js';
import Element from '../engine/model/element.js';
import LivePosition from '../engine/model/liveposition.js';
import Position from '../engine/model/position.js';
Expand All @@ -12,7 +12,7 @@ import Position from '../engine/model/position.js';
* The Enter command. It is used by the {@link enter.Enter Enter feature} to handle the <kbd>Enter</kbd> key.
*
* @member enter
* @extends ckeditor5.command.Command
* @extends core.command.Command
*/
export default class EnterCommand extends Command {
_doExecute() {
Expand Down
2 changes: 1 addition & 1 deletion tests/enter.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see LICENSE.md.
*/

import VirtualTestEditor from '/tests/ckeditor5/_utils/virtualtesteditor.js';
import VirtualTestEditor from '/tests/core/_utils/virtualtesteditor.js';
import Enter from '/ckeditor5/enter/enter.js';
import EnterCommand from '/ckeditor5/enter/entercommand.js';
import DomEventData from '/ckeditor5/engine/view/observer/domeventdata.js';
Expand Down
2 changes: 1 addition & 1 deletion tests/entercommand.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see LICENSE.md.
*/

import ModelTestEditor from '/tests/ckeditor5/_utils/modeltesteditor.js';
import ModelTestEditor from '/tests/core/_utils/modeltesteditor.js';
import { default as EnterCommand, enterBlock } from '/ckeditor5/enter/entercommand.js';
import { getData, setData } from '/tests/engine/_utils/model.js';

Expand Down

0 comments on commit 63683c6

Please sign in to comment.