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 5, 2018
1 parent a0ad8fe commit 1536e99
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/manual/highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class FancyWidget extends Plugin {

ClassicEditor.create( global.document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic, List, FancyWidget ],
toolbar: [ 'headings', '|', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
toolbar: [ 'heading', '|', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/markers.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ let _uid = 1;
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Bold, Italic, List, Heading, Undo ],
toolbar: [ 'headings', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/placeholder.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { attachPlaceholder } from '../../src/view/placeholder';
ClassicEditor
.create( global.document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading ],
toolbar: [ 'headings', '|', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'undo', 'redo' ]
} )
.then( editor => {
const view = editor.editing.view;
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/1088/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ClassicEditor
plugins: [ ArticlePluginSet ],
toolbar: {
items: [
'headings',
'heading',
'bold',
'italic',
'link',
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/603/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
ClassicEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Heading, Bold, Italic ],
toolbar: [ 'headings', '|', 'bold', 'italic' ]
toolbar: [ 'heading', '|', 'bold', 'italic' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit 1536e99

Please sign in to comment.