瀏覽代碼

Changed absolute import paths to relative.

Oskar Wrobel 9 年之前
父節點
當前提交
572291ae83

+ 11 - 11
packages/ckeditor5-editor-classic/src/classiccreator.js

@@ -5,22 +5,22 @@
 
 'use strict';
 
-import StandardCreator from '/ckeditor5/creator/standardcreator.js';
+import StandardCreator from '../creator/standardcreator.js';
 
-import HtmlDataProcessor from '/ckeditor5/engine/dataprocessor/htmldataprocessor.js';
-import Editable from '/ckeditor5/editable.js';
+import HtmlDataProcessor from '../engine/dataprocessor/htmldataprocessor.js';
+import Editable from '../editable.js';
 
-import { createEditableUI, createEditorUI } from '/ckeditor5/ui/creator-utils.js';
+import { createEditableUI, createEditorUI } from '../ui/creator-utils.js';
 
-import BoxedEditorUI from '/ckeditor5/ui/editorui/boxed/boxededitorui.js';
-import BoxedEditorUIView from '/ckeditor5/ui/editorui/boxed/boxededitoruiview.js';
+import BoxedEditorUI from '../ui/editorui/boxed/boxededitorui.js';
+import BoxedEditorUIView from '../ui/editorui/boxed/boxededitoruiview.js';
 
-import EditableUI from '/ckeditor5/ui/editableui/editableui.js';
-import InlineEditableUIView from '/ckeditor5/ui/editableui/inline/inlineeditableuiview.js';
+import EditableUI from '../ui/editableui/editableui.js';
+import InlineEditableUIView from '../ui/editableui/inline/inlineeditableuiview.js';
 
-import Model from '/ckeditor5/ui/model.js';
-import StickyToolbar from '/ckeditor5/ui/bindings/stickytoolbar.js';
-import StickyToolbarView from '/ckeditor5/ui/stickytoolbar/stickytoolbarview.js';
+import Model from '../ui/model.js';
+import StickyToolbar from '../ui/bindings/stickytoolbar.js';
+import StickyToolbarView from '../ui/stickytoolbar/stickytoolbarview.js';
 
 import { imitateFeatures, imitateDestroyFeatures } from './utils/imitatefeatures.js';
 

+ 3 - 3
packages/ckeditor5-editor-classic/src/utils/imitatefeatures.js

@@ -5,9 +5,9 @@
 
 'use strict';
 
-import Model from '/ckeditor5/ui/model.js';
-import Button from '/ckeditor5/ui/button/button.js';
-import ButtonView from '/ckeditor5/ui/button/buttonview.js';
+import Model from '../../ui/model.js';
+import Button from '../../ui/button/button.js';
+import ButtonView from '../../ui/button/buttonview.js';
 
 /**
  * Immitates that some features were loaded and did their job.