Bläddra i källkod

Added empty "Plugin.destroy()" method because some of tests do not pass.

Kamil Piechaczek 8 år sedan
förälder
incheckning
ae158759b9
1 ändrade filer med 6 tillägg och 0 borttagningar
  1. 6 0
      packages/ckeditor5-core/src/plugin.js

+ 6 - 0
packages/ckeditor5-core/src/plugin.js

@@ -29,6 +29,12 @@ export default class Plugin {
 		 */
 		this.editor = editor;
 	}
+
+	/**
+	 * @inheritDoc
+	 */
+	destroy() {
+	}
 }
 
 mix( Plugin, ObservableMixin );