ソースを参照

Removed the "Unlink" button from the toolbars.

Aleksander Nowodzinski 8 年 前
コミット
9b8ec1c9c9

+ 0 - 1
packages/ckeditor5-build-classic/build-config.js

@@ -40,7 +40,6 @@ module.exports = {
 			'bold',
 			'italic',
 			'link',
-			'unlink',
 			'bulletedList',
 			'numberedList',
 			'blockQuote',

+ 0 - 1
packages/ckeditor5-build-classic/ckeditor.js

@@ -42,7 +42,6 @@ ClassicEditor.build = {
 			'bold',
 			'italic',
 			'link',
-			'unlink',
 			'bulletedList',
 			'numberedList',
 			'blockQuote',

+ 2 - 2
packages/ckeditor5-build-classic/tests/ckeditor.js

@@ -55,7 +55,7 @@ describe( 'ClassicEditor', () => {
 	} );
 
 	describe( 'destroy()', () => {
-		beforeEach( function () {
+		beforeEach( () => {
 			return ClassicEditor.create( editorElement )
 				.then( newEditor => {
 					editor = newEditor;
@@ -152,5 +152,5 @@ describe( 'ClassicEditor', () => {
 			editor.setData( data );
 			expect( editor.getData() ).to.equal( data );
 		} );
-	} )
+	} );
 } );