Przeglądaj źródła

Changed PendingActions to ScopePlugin.

Oskar Wróbel 6 lat temu
rodzic
commit
7a24eb60e3
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      packages/ckeditor5-core/src/pendingactions.js

+ 2 - 2
packages/ckeditor5-core/src/pendingactions.js

@@ -7,7 +7,7 @@
  * @module core/pendingactions
  */
 
-import Plugin from './plugin';
+import ContextPlugin from './contextplugin';
 import ObservableMixin from '@ckeditor/ckeditor5-utils/src/observablemixin';
 import Collection from '@ckeditor/ckeditor5-utils/src/collection';
 import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';
@@ -52,7 +52,7 @@ import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';
  *
  * @extends module:core/plugin~Plugin
  */
-export default class PendingActions extends Plugin {
+export default class PendingActions extends ContextPlugin {
 	/**
 	 * @inheritDoc
 	 */