| 1234567891011121314151617181920212223242526 |
- /**
- * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /**
- * @module font/fontsizecommand
- */
- import FontCommand from '../fontcommand';
- /**
- * The font size command. It is used by the {@link module:font/fontsize/fontsizeediting~FontSizeEditing}
- * to apply font size.
- *
- * @extends module:core/command~Command
- */
- export default class FontSizeCommand extends FontCommand {
- /**
- * TODO: docs me
- * @param editor
- */
- constructor( editor ) {
- super( editor, 'fontSize' );
- }
- }
|