Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CKEditor 5 Custom Build
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Daniel Kaufmann
CKEditor 5 Custom Build
Commits
8a47471d
Commit
8a47471d
authored
Dec 03, 2019
by
Marek Lewandowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Internal: Fixed code style.
parent
59903ab7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
index.html
sample/index.html
+8
-8
No files found.
sample/index.html
View file @
8a47471d
...
...
@@ -58,15 +58,15 @@
<p>You can use this sample to validate whether your <a href="https://ckeditor.com/docs/ckeditor5/latest/builds/guides/development/custom-builds.html">custom build</a> works fine.</p>`
;
DecoupledEditor
.
create
(
editorData
)
.
then
(
editor
=>
{
window
.
editor
=
editor
;
.
then
(
editor
=>
{
window
.
editor
=
editor
;
document
.
querySelector
(
'.toolbar-container'
).
appendChild
(
editor
.
ui
.
view
.
toolbar
.
element
);
document
.
querySelector
(
'.editable-container'
).
appendChild
(
editor
.
ui
.
view
.
editable
.
element
);
}
)
.
catch
(
error
=>
{
console
.
error
(
'There was a problem with initializing the editor'
,
error
);
}
);
document
.
querySelector
(
'.toolbar-container'
).
appendChild
(
editor
.
ui
.
view
.
toolbar
.
element
);
document
.
querySelector
(
'.editable-container'
).
appendChild
(
editor
.
ui
.
view
.
editable
.
element
);
}
)
.
catch
(
error
=>
{
console
.
error
(
'There was a problem with initializing the editor'
,
error
);
}
);
</script>
</body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment