Przeglądaj źródła

Updated manual test.

Piotrek Koszuliński 9 lat temu
rodzic
commit
218d6b7f3d
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      packages/ckeditor5-list/tests/manual/list.js

+ 3 - 3
packages/ckeditor5-list/tests/manual/list.js

@@ -3,13 +3,13 @@
  * For licensing, see LICENSE.md.
  */
 
-/* globals console:false, window, document */
+/* globals console, window, document */
 
 import ClassicEditor from '/ckeditor5/editor-classic/classic.js';
 
 ClassicEditor.create( document.querySelector( '#editor' ), {
-	features: [ 'enter', 'typing', 'headings', 'paragraph', 'undo', 'list' ],
-	toolbar: [ 'bulletedList', 'numberedList', 'headings', 'undo', 'redo' ]
+	features: [ 'enter', 'typing', 'heading', 'paragraph', 'undo', 'list' ],
+	toolbar: [ 'headings', 'bulletedList', 'numberedList', 'undo', 'redo' ]
 } )
 .then( editor => {
 	window.editor = editor;