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 #84 from ckeditor/t/83
Browse files Browse the repository at this point in the history
Other: Fixed import paths after [refactoring in ckeditor5-ui](ckeditor/ckeditor5-ui#156). Closes #83.
  • Loading branch information
Reinmar committed Mar 7, 2017
2 parents 13551a6 + 0485f9e commit b235415
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import LinkElement from './linkelement';
import clickOutsideHandler from '@ckeditor/ckeditor5-ui/src/bindings/clickoutsidehandler';

import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import BalloonPanelView from '@ckeditor/ckeditor5-ui/src/balloonpanel/balloonpanelview';
import BalloonPanelView from '@ckeditor/ckeditor5-ui/src/panel/balloon/balloonpanelview';

import LinkFormView from './ui/linkformview';

Expand Down Expand Up @@ -127,10 +127,10 @@ export default class Link extends Plugin {
}

/**
* Creates the {@link module:ui/balloonpanel/balloonpanelview~BalloonPanelView} instance.
* Creates the {@link module:ui/panel/balloon/balloonpanelview~BalloonPanelView} instance.
*
* @private
* @returns {module:ui/balloonpanel/balloonpanelview~BalloonPanelView} Link balloon panel instance.
* @returns {module:ui/panel/balloon/balloonpanelview~BalloonPanelView} Link balloon panel instance.
*/
_createBalloonPanel() {
const editor = this.editor;
Expand Down
4 changes: 2 additions & 2 deletions src/ui/linkformview.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ export default class LinkFormView extends View {
this.focusTracker = new FocusTracker();

/**
* Instance of the {@link module:core/keystrokehandler~KeystrokeHandler}.
* Instance of the {@link module:utils/keystrokehandler~KeystrokeHandler}.
*
* @readonly
* @member {module:core/keystrokehandler~KeystrokeHandler}
* @member {module:utils/keystrokehandler~KeystrokeHandler}
*/
this.keystrokes = new KeystrokeHandler();

Expand Down
2 changes: 1 addition & 1 deletion tests/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-util
import Link from '../src/link';
import LinkEngine from '../src/linkengine';
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import BalloonPanelView from '@ckeditor/ckeditor5-ui/src/balloonpanel/balloonpanelview';
import BalloonPanelView from '@ckeditor/ckeditor5-ui/src/panel/balloon/balloonpanelview';

import Range from '@ckeditor/ckeditor5-engine/src/view/range';
import ClickObserver from '@ckeditor/ckeditor5-engine/src/view/observer/clickobserver';
Expand Down

0 comments on commit b235415

Please sign in to comment.