浏览代码

Add missing jsdoc doclets to constructors.

Maciej Gołaszewski 6 年之前
父节点
当前提交
73d186665e

+ 3 - 0
packages/ckeditor5-font/src/fontbackgroundcolor/fontbackgroundcolorui.js

@@ -17,6 +17,9 @@ import fontBackgroundColorIcon from '../../theme/icons/font-background.svg';
  * @extends module:core/plugin~Plugin
  */
 export default class FontBackgroundColorUI extends ColorUI {
+	/**
+	 * @inheritDoc
+	 */
 	constructor( editor ) {
 		const t = editor.locale.t;
 

+ 3 - 0
packages/ckeditor5-font/src/fontcolor/fontcolorui.js

@@ -17,6 +17,9 @@ import fontColorIcon from '../../theme/icons/font-color.svg';
  * @extends module:core/plugin~Plugin
  */
 export default class FontColorUI extends ColorUI {
+	/**
+	 * @inheritDoc
+	 */
 	constructor( editor ) {
 		const t = editor.locale.t;