소스 검색

Clean-up of the branch.

Aleksander Nowodzinski 10 년 전
부모
커밋
535b919561
1개의 변경된 파일0개의 추가작업 그리고 35개의 파일을 삭제
  1. 0 35
      packages/ckeditor5-utils/src/feature.js

+ 0 - 35
packages/ckeditor5-utils/src/feature.js

@@ -1,35 +0,0 @@
-/**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
-
-'use strict';
-
-/**
- * Represents a single editor instance.
- *
- * @class Editor
- * @extends Model
- */
-
-CKEDITOR.define( [
-	'plugin'
-], function( Plugin ) {
-	class Feature extends Plugin {
-		constructor( editor ) {
-			super( editor );
-
-			this.set( 'state', false );
-			this.set( 'disabled', false );
-		}
-	}
-
-	return Feature;
-} );
-
-/**
- * Fired when this editor instance is destroyed. The editor at this point is not usable and this event should be used to
- * perform the clean-up in any plugin.
- *
- * @event destroy
- */