ckeditor5-image-upload-base64
Version:
The development environment of CKEditor 5 – the best browser-based rich text editor.
48 lines (42 loc) • 1.38 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/tablecellproperties/commands/tablecellborderstylecommand
*/
import TableCellPropertyCommand from './tablecellpropertycommand';
import { getSingleValue } from '../../utils/table-properties';
/**
* The table cell border style command.
*
* The command is registered by the {@link module:table/tablecellproperties/tablecellpropertiesediting~TableCellPropertiesEditing} as
* the `'tableCellBorderStyle'` editor command.
*
* To change the border style of selected cells, execute the command:
*
* editor.execute( 'tableCellBorderStyle', {
* value: 'dashed'
* } );
*
* @extends module:table/tablecellproperties/commands/tablecellpropertycommand~TableCellPropertyCommand
*/
export default class TableCellBorderStyleCommand extends TableCellPropertyCommand {
/**
* Creates a new `TableCellBorderStyleCommand` instance.
*
* @param {module:core/editor/editor~Editor} editor An editor in which this command will be used.
*/
constructor( editor ) {
super( editor, 'borderStyle' );
}
/**
* @inheritDoc
*/
_getAttribute( tableCell ) {
if ( !tableCell ) {
return;
}
return getSingleValue( tableCell.getAttribute( this.attributeName ) );
}
}