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

Commit

Permalink
Merge 3864337 into 4d6a2a2
Browse files Browse the repository at this point in the history
  • Loading branch information
jodator committed Mar 8, 2018
2 parents 4d6a2a2 + 3864337 commit b113682
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/manual/inlineeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function initEditors() {
InlineEditor
.create( document.querySelector( selector ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
} )
.then( editor => {
console.log( `${ selector } has been initialized`, editor );
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/23/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ InlineEditor
.create( document.querySelector( '#editor' ), {
plugins: [ Enter, Typing, Paragraph, Undo, Heading, Bold, Italic ],
toolbar: {
items: [ 'headings', '|', 'bold', 'italic', 'undo', 'redo' ],
items: [ 'heading', '|', 'bold', 'italic', 'undo', 'redo' ],
viewportTopOffset: 100
}
} )
Expand Down
2 changes: 1 addition & 1 deletion tests/manual/tickets/4/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articleplugi
InlineEditor
.create( document.querySelector( '#editor' ), {
plugins: [ ArticlePluginSet ],
toolbar: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down

0 comments on commit b113682

Please sign in to comment.