8
0
Просмотр исходного кода

Add docs to TableCellProperties class.

Maciej Gołaszewski 6 лет назад
Родитель
Сommit
18d59712ae
1 измененных файлов с 6 добавлено и 0 удалено
  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.
  *
+ * 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
  */
 export default class TableCellProperties extends Plugin {
@@ -24,6 +27,9 @@ export default class TableCellProperties extends Plugin {
 		return 'TableCellProperties';
 	}
 
+	/**
+	 * @inheritDoc
+	 */
 	static get requires() {
 		return [ TableCellPropertiesEditing ];
 	}