Browse Source

Docs: Added separators to toolbar configurations.

Aleksander Nowodzinski 7 years ago
parent
commit
b049011de1

+ 1 - 1
packages/ckeditor5-font/docs/_snippets/features/custom-font-family-options.js

@@ -8,7 +8,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-custom-font-family-options' ), {
 		toolbar: {
 			items: [
-				'headings', 'bulletedList', 'numberedList', 'fontFamily', 'undo', 'redo'
+				'headings', '|', 'bulletedList', 'numberedList', 'fontFamily', 'undo', 'redo'
 			],
 			viewportTopOffset: 60
 		},

+ 1 - 1
packages/ckeditor5-font/docs/_snippets/features/custom-font-size-named-options.js

@@ -8,7 +8,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-custom-font-size-named-options' ), {
 		toolbar: {
 			items: [
-				'headings', 'bulletedList', 'numberedList', 'fontSize', 'undo', 'redo'
+				'headings', '|', 'bulletedList', 'numberedList', 'fontSize', 'undo', 'redo'
 			],
 			viewportTopOffset: 60
 		},

+ 1 - 1
packages/ckeditor5-font/docs/_snippets/features/custom-font-size-numeric-options.js

@@ -8,7 +8,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-custom-font-size-numeric-options' ), {
 		toolbar: {
 			items: [
-				'headings', 'bulletedList', 'numberedList', 'fontSize', 'undo', 'redo'
+				'headings', '|', 'bulletedList', 'numberedList', 'fontSize', 'undo', 'redo'
 			],
 			viewportTopOffset: 60
 		},

+ 1 - 1
packages/ckeditor5-font/docs/_snippets/features/font-family.js

@@ -9,7 +9,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-font-family' ), {
 		toolbar: {
 			items: [
-				'headings', 'bulletedList', 'numberedList', 'fontFamily', 'undo', 'redo'
+				'headings', '|', 'bulletedList', 'numberedList', 'fontFamily', 'undo', 'redo'
 			],
 			viewportTopOffset: 60
 		}