Sfoglia il codice sorgente

Changed package name. See https://github.com/ckeditor/ckeditor5-headings/issues/8.

Piotrek Koszuliński 9 anni fa
parent
commit
04a5c9b828

+ 1 - 1
packages/ckeditor5-editor-classic/tests/manual/classic.js

@@ -12,7 +12,7 @@ let editor, editable, observer;
 
 function initEditor() {
 	ClassicEditor.create( document.querySelector( '#editor' ), {
-		features: [ 'enter', 'typing', 'paragraph', 'undo', 'headings', 'basic-styles/bold', 'basic-styles/italic' ],
+		features: [ 'enter', 'typing', 'paragraph', 'undo', 'heading', 'basic-styles/bold', 'basic-styles/italic' ],
 		toolbar: [ 'headings', 'bold', 'italic', 'undo', 'redo' ]
 	} )
 	.then( newEditor => {