ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
36 lines (32 loc) • 1.06 kB
JavaScript
/**
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module table/tableproperties/commands/tablealignmentcommand
*/
import TablePropertyCommand from './tablepropertycommand';
/**
* The table alignment command.
*
* The command is registered by the {@link module:table/tableproperties/tablepropertiesediting~TablePropertiesEditing} as
* the `'tableAlignment'` editor command.
*
* To change the alignment of the selected table, execute the command:
*
* editor.execute( 'tableAlignment', {
* value: 'right'
* } );
*
* @extends module:table/tableproperties/commands/tablepropertycommand~TablePropertyCommand
*/
export default class TableAlignmentCommand extends TablePropertyCommand {
/**
* Creates a new `TableAlignmentCommand` instance.
*
* @param {module:core/editor/editor~Editor} editor An editor in which this command will be used.
*/
constructor( editor ) {
super( editor, 'alignment' );
}
}