Browse Source

Docs: Added separators to the toolbar configurations.

Aleksander Nowodzinski 7 years ago
parent
commit
9f36bddbb9

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

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

+ 1 - 1
packages/ckeditor5-highlight/docs/_snippets/features/highlight-buttons.js

@@ -9,7 +9,7 @@ ClassicEditor
 	.create( document.querySelector( '#snippet-highlight-buttons' ), {
 		toolbar: {
 			items: [
-				'headings', 'highlight:marker', 'highlight:greenMarker', 'highlight:pinkMarker', 'highlight:bluePen',
+				'headings', '|', 'highlight:marker', 'highlight:greenMarker', 'highlight:pinkMarker', 'highlight:bluePen',
 				'highlight:redPen', 'removeHighlight', 'undo', 'redo'
 			],
 			viewportTopOffset: 60

+ 1 - 1
packages/ckeditor5-highlight/docs/_snippets/features/highlight.js

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