From 0b1964345c394b5565c8728ac2a473197c759c6c Mon Sep 17 00:00:00 2001 From: Szymon Cofalik Date: Mon, 14 Oct 2019 17:35:42 +0200 Subject: [PATCH] Other: Added `pluginName` property to editing plugin. --- src/undoediting.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/undoediting.js b/src/undoediting.js index 3036db6..fa6e723 100644 --- a/src/undoediting.js +++ b/src/undoediting.js @@ -19,6 +19,13 @@ import RedoCommand from './redocommand'; * @extends module:core/plugin~Plugin */ export default class UndoEditing extends Plugin { + /** + * @inheritDoc + */ + static get pluginName() { + return 'UndoEditing'; + } + /** * @inheritDoc */