Răsfoiți Sursa

Add docs to TableCellProperties class.

Maciej Gołaszewski 6 ani în urmă
părinte
comite
18d59712ae
1 a modificat fișierele cu 6 adăugiri și 0 ștergeri
  1. 6 0
      packages/ckeditor5-table/src/tablecellproperties.js

+ 6 - 0
packages/ckeditor5-table/src/tablecellproperties.js

@@ -14,6 +14,9 @@ import TableCellPropertiesEditing from './tablecellpropertiesediting';
 /**
 /**
  * The table cell properties feature.
  * The table cell properties feature.
  *
  *
+ * This is a "glue" plugin which loads the {@link module:table/tablecellpropertiesediting~TableCellPropertiesEditing table editing feature}
+ * and table UI feature.
+ *
  * @extends module:core/plugin~Plugin
  * @extends module:core/plugin~Plugin
  */
  */
 export default class TableCellProperties extends Plugin {
 export default class TableCellProperties extends Plugin {
@@ -24,6 +27,9 @@ export default class TableCellProperties extends Plugin {
 		return 'TableCellProperties';
 		return 'TableCellProperties';
 	}
 	}
 
 
+	/**
+	 * @inheritDoc
+	 */
 	static get requires() {
 	static get requires() {
 		return [ TableCellPropertiesEditing ];
 		return [ TableCellPropertiesEditing ];
 	}
 	}