瀏覽代碼

Fixed class names.

Piotrek Koszuliński 7 年之前
父節點
當前提交
c7dae62209
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. 3 3
      packages/ckeditor5-table/src/table.js
  2. 1 1
      packages/ckeditor5-table/src/tableediting.js

+ 3 - 3
packages/ckeditor5-table/src/table.js

@@ -9,8 +9,8 @@
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 
-import TablesEditing from './tableediting';
-import TablesUI from './tableui';
+import TableEditing from './tableediting';
+import TableUI from './tableui';
 import Widget from '@ckeditor/ckeditor5-widget/src/widget';
 
 /**
@@ -23,7 +23,7 @@ export default class Table extends Plugin {
 	 * @inheritDoc
 	 */
 	static get requires() {
-		return [ TablesEditing, TablesUI, Widget ];
+		return [ TableEditing, TableUI, Widget ];
 	}
 
 	/**

+ 1 - 1
packages/ckeditor5-table/src/tableediting.js

@@ -39,7 +39,7 @@ import TableUtils from './tableutils';
  *
  * @extends module:core/plugin~Plugin
  */
-export default class TablesEditing extends Plugin {
+export default class TableEditing extends Plugin {
 	/**
 	 * @inheritDoc
 	 */