21 lines
535 B
JavaScript
21 lines
535 B
JavaScript
|
|
ClassicEditor
|
||
|
|
.create( document.querySelector( '.editor' ), {
|
||
|
|
// Editor configuration.
|
||
|
|
} )
|
||
|
|
.then( editor => {
|
||
|
|
window.editor = editor;
|
||
|
|
} )
|
||
|
|
.catch( handleSampleError );
|
||
|
|
|
||
|
|
function handleSampleError( error ) {
|
||
|
|
const issueUrl = 'https://github.com/ckeditor/ckeditor5/issues';
|
||
|
|
|
||
|
|
const message = [
|
||
|
|
'Oops, something went wrong!',
|
||
|
|
`Please, report the following error on ${ issueUrl } with the build id "yt1k3s5kie6c-kuy63vghjub2" and the error stack trace:`
|
||
|
|
].join( '\n' );
|
||
|
|
|
||
|
|
console.error( message );
|
||
|
|
console.error( error );
|
||
|
|
}
|