Browse Source

Docs: Removed the Unlink button from the toolbar (see ckeditor/ckeditor5-link#52).

Piotrek Koszuliński 8 years ago
parent
commit
56036e475c

+ 1 - 1
docs/_snippets/examples/classic-editor.js

@@ -12,7 +12,7 @@ import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
 ClassicEditor
 	.create( document.querySelector( '#snippet-classic-editor' ), {
 		plugins: [ ArticlePreset ],
-		toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
+		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
 		image: {
 			toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
 		}

+ 1 - 1
docs/_snippets/examples/inline-editor.js

@@ -12,7 +12,7 @@ import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
 InlineEditor
 	.create( document.querySelector( '#snippet-inline-editor' ), {
 		plugins: [ ArticlePreset ],
-		toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
+		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
 		image: {
 			toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
 		}

+ 1 - 1
docs/_snippets/features/read-only.js

@@ -12,7 +12,7 @@ import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
 ClassicEditor
 	.create( document.querySelector( '#snippet-read-only' ), {
 		plugins: [ ArticlePreset ],
-		toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
+		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
 		image: {
 			toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
 		}

+ 1 - 1
docs/_snippets/features/ui-language.js

@@ -14,7 +14,7 @@ import ArticlePreset from '@ckeditor/ckeditor5-presets/src/article';
 ClassicEditor
 	.create( document.querySelector( '#snippet-ui-language' ), {
 		plugins: [ ArticlePreset ],
-		toolbar: [ 'headings', 'bold', 'italic', 'link', 'unlink', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
+		toolbar: [ 'headings', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote', 'undo', 'redo' ],
 		image: {
 			toolbar: [ 'imageStyleFull', 'imageStyleSide', '|', 'imageTextAlternative' ]
 		}