Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Other: Renamed 'headings' ui component to 'heading'.
Browse files Browse the repository at this point in the history
  • Loading branch information
jodator committed Mar 8, 2018
1 parent fc59056 commit 7708ff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/manual/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import List from '../../src/list';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard ],
toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/nestedlists.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import List from '../../src/list';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Heading, Paragraph, Undo, List, Clipboard, Link ],
toolbar: [ 'headings', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit 7708ff2

Please sign in to comment.