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

Commit

Permalink
Other: Renamed 'bulletedList' and 'numberedList' ui components to 'li…
Browse files Browse the repository at this point in the history
…st:bulleted' and 'list:numbered'.
  • Loading branch information
jodator committed Mar 6, 2018
1 parent 1536e99 commit b40c3e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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: [ 'heading', '|', 'undo', 'redo', 'bold', 'italic', 'numberedList', 'bulletedList' ]
toolbar: [ 'heading', '|', 'undo', 'redo', 'bold', 'italic', 'list:numbered', 'list:bulleted' ]
} )
.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: [ 'heading', '|', 'bold', 'italic', 'bulletedList', 'numberedList', 'undo', 'redo' ]
toolbar: [ 'heading', '|', 'bold', 'italic', 'list:bulleted', 'list:numbered', 'undo', 'redo' ]
} )
.then( editor => {
window.editor = editor;
Expand Down
4 changes: 2 additions & 2 deletions tests/manual/tickets/1088/1.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ ClassicEditor
'bold',
'italic',
'link',
'bulletedList',
'numberedList',
'list:bulleted',
'list:numbered',
'blockQuote',
'undo',
'redo'
Expand Down

0 comments on commit b40c3e8

Please sign in to comment.