Browse Source

Other: Renamed 'headings' ui component to 'heading'.

Maciej Gołaszewski 8 years ago
parent
commit
899abe1fc5

+ 1 - 1
packages/ckeditor5-theme-lark/docs/_snippets/examples/theme-lark.js

@@ -15,7 +15,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-classic-editor' ), {
 		plugins: [ ArticlePluginSet, EasyImage ],
 		toolbar: {
-			items: [ 'headings', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
+			items: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
 			viewportTopOffset: 60
 		},
 		image: {

+ 1 - 1
packages/ckeditor5-theme-lark/tests/manual/inverted.js

@@ -14,7 +14,7 @@ import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
 
 const config = {
 	plugins: [ ArticlePluginSet, Strikethrough, Code ],
-	toolbar: [ 'headings', '|', 'bold', 'italic', 'strikethrough', 'code', 'link', '|', 'undo', 'redo' ]
+	toolbar: [ 'heading', '|', 'bold', 'italic', 'strikethrough', 'code', 'link', '|', 'undo', 'redo' ]
 };
 
 ClassicEditor