Sfoglia il codice sorgente

Rename TableProperties.enableBorderProperty to enableBorderProperties().

Maciej Gołaszewski 6 anni fa
parent
commit
a36793e761
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      packages/ckeditor5-table/src/tableproperites.js

+ 2 - 2
packages/ckeditor5-table/src/tableproperites.js

@@ -31,14 +31,14 @@ export default class TableProperties extends Plugin {
 		const schema = editor.model.schema;
 		const schema = editor.model.schema;
 		const conversion = editor.conversion;
 		const conversion = editor.conversion;
 
 
-		this.enableBorderProperty( schema, conversion );
+		this.enableBorderProperties( schema, conversion );
 		this.enableBackgroundColorProperty( schema, conversion );
 		this.enableBackgroundColorProperty( schema, conversion );
 		this.enableWidthProperty( schema, conversion );
 		this.enableWidthProperty( schema, conversion );
 		this.enableHeightProperty( schema, conversion );
 		this.enableHeightProperty( schema, conversion );
 		this.enableAlignmentProperty( schema, conversion );
 		this.enableAlignmentProperty( schema, conversion );
 	}
 	}
 
 
-	enableBorderProperty( schema, conversion ) {
+	enableBorderProperties( schema, conversion ) {
 		schema.extend( 'table', {
 		schema.extend( 'table', {
 			allowAttributes: [ 'borderWidth', 'borderColor', 'borderStyle' ]
 			allowAttributes: [ 'borderWidth', 'borderColor', 'borderStyle' ]
 		} );
 		} );