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

Commit

Permalink
Removed first slash from imports and fixed HTML in manual tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Piechaczek committed Nov 25, 2016
1 parent 2f6d435 commit fc4fbe8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tests/manual/enter.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<head>
<link rel="stylesheet" href="%APPS_DIR%ckeditor/build/modules/amd/theme/ckeditor.css">
<link rel="stylesheet" href="/theme/ckeditor.css">
</head>

<div id="editor">
Expand Down
14 changes: 7 additions & 7 deletions tests/manual/enter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

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

import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
import Enter from '/ckeditor5/enter/enter.js';
import Typing from '/ckeditor5/typing/typing.js';
import Heading from '/ckeditor5/heading/heading.js';
import Undo from '/ckeditor5/undo/undo.js';
import Bold from '/ckeditor5/basic-styles/bold.js';
import Italic from '/ckeditor5/basic-styles/italic.js';
import ClassicEditor from 'ckeditor5/editor-classic/classic.js';
import Enter from 'ckeditor5/enter/enter.js';
import Typing from 'ckeditor5/typing/typing.js';
import Heading from 'ckeditor5/heading/heading.js';
import Undo from 'ckeditor5/undo/undo.js';
import Bold from 'ckeditor5/basic-styles/bold.js';
import Italic from 'ckeditor5/basic-styles/italic.js';

ClassicEditor.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Heading, Undo, Bold, Italic ],
Expand Down

0 comments on commit fc4fbe8

Please sign in to comment.