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

Unify not implemented debug console logs.

Maciej Gołaszewski 5 лет назад
Родитель
Сommit
f36df6a5d7
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      packages/ckeditor5-table/src/tableclipboard.js

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

@@ -109,7 +109,7 @@ export default class TableClipboard extends Plugin {
 		evt.stop();
 
 		if ( selectedTableCells.length === 1 ) {
-			// @if CK_DEBUG // console.log( 'Single table cell is selected. Not handled.' );
+			// @if CK_DEBUG // console.log( 'NOT IMPLEMENTED YET: Single table cell is selected.' );
 
 			return;
 		}
@@ -124,13 +124,13 @@ export default class TableClipboard extends Plugin {
 		const contentTable = findAncestor( 'table', selectedTableCells[ 0 ] );
 
 		if ( !isSelectionRectangular( this.editor.model.document.selection, tableUtils ) ) {
-			// @if CK_DEBUG // console.log( 'Selection is not rectangular (non-mergeable) - pasting disabled.' );
+			// @if CK_DEBUG // console.log( 'NOT IMPLEMENTED YET: Selection is not rectangular (non-mergeable).' );
 
 			return;
 		}
 
 		if ( selectionHeight > insertHeight || selectionWidth > insertWidth ) {
-			// @if CK_DEBUG // console.log( 'Pasted table is smaller than selection area.' );
+			// @if CK_DEBUG // console.log( 'NOT IMPLEMENTED YET: Pasted table is smaller than selection area.' );
 
 			return;
 		}