|
|
@@ -27,11 +27,8 @@ export default class TableSelection extends Plugin {
|
|
|
/**
|
|
|
* @inheritDoc
|
|
|
*/
|
|
|
- constructor( editor ) {
|
|
|
- super( editor );
|
|
|
-
|
|
|
- this._isSelecting = false;
|
|
|
- this._highlighted = new Set();
|
|
|
+ static get pluginName() {
|
|
|
+ return 'TableSelection';
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -41,6 +38,16 @@ export default class TableSelection extends Plugin {
|
|
|
return [ TableUtils ];
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ */
|
|
|
+ constructor( editor ) {
|
|
|
+ super( editor );
|
|
|
+
|
|
|
+ this._isSelecting = false;
|
|
|
+ this._highlighted = new Set();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* Flag indicating that table selection is selecting valid ranges in table cell.
|
|
|
*
|