26 lines
724 B
HTML
26 lines
724 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8" />
|
||
<title>CKEditor 5 – Classic editor</title>
|
||
<link rel="stylesheet" href="styles.css" />
|
||
<script src="https://cdn.ckeditor.com/ckeditor5/41.1.0/classic/ckeditor.js"></script>
|
||
<script src="online-editor.js"></script>
|
||
</head>
|
||
<body>
|
||
<div id="editor">
|
||
<p>Na mizo nisem položil knjigo.</p>
|
||
</div>
|
||
<bes-popup-el></bes-popup-el>
|
||
<script>
|
||
ClassicEditor.create(document.querySelector('#editor'))
|
||
.then(newEditor => {
|
||
BesEditor.register(newEditor.ui.view.editable.element, newEditor)
|
||
})
|
||
.catch(error => {
|
||
console.error(error)
|
||
})
|
||
</script>
|
||
</body>
|
||
</html>
|