8
0
Quellcode durchsuchen

Docs: Update the docs of a TableWalker.

Maciej Gołaszewski vor 7 Jahren
Ursprung
Commit
ea1fcdca9d
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 6 0
      packages/ckeditor5-table/src/tablewalker.js

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

@@ -199,6 +199,12 @@ export default class TableWalker {
 		};
 	}
 
+	/**
+	 * Updates the cell spans of a previous cell.
+	 *
+	 * @returns {Number}
+	 * @private
+	 */
 	_updateSpans() {
 		const colspan = this._previousCell.getAttribute( 'colspan' ) || 1;
 		const rowspan = this._previousCell.getAttribute( 'rowspan' ) || 1;