scriptIndex.blade.php 647 B

1234567891011121314151617181920212223
  1. <script src="https://cdn.ckeditor.com/ckeditor5/36.0.0/classic/ckeditor.js"></script>
  2. <script>
  3. ClassicEditor
  4. .create(document.querySelector('#presentation'))
  5. .then(editor => {
  6. window.editor = editor;
  7. })
  8. .catch(error => {
  9. console.error('There was a problem initializing the editor.', error);
  10. });
  11. ClassicEditor
  12. .create(document.querySelector('#details'))
  13. .then(editor => {
  14. window.editor = editor;
  15. })
  16. .catch(error => {
  17. console.error('There was a problem initializing the editor.', error);
  18. });
  19. </script>