19 lines
770 B
JavaScript
19 lines
770 B
JavaScript
/*!
|
|
* Jodit Editor (https://xdsoft.net/jodit/)
|
|
* Released under MIT see LICENSE.txt in the project root for license information.
|
|
* Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net
|
|
*/
|
|
import { memorizeExec } from "../../core/helpers/index.js";
|
|
import { Icon } from "../../core/ui/icon.js";
|
|
import { Config } from "../../config.js";
|
|
import lineHeightIcon from "./line-height.svg.js";
|
|
Config.prototype.defaultLineHeight = null;
|
|
Icon.set('line-height', lineHeightIcon);
|
|
Config.prototype.controls.lineHeight = {
|
|
command: 'applyLineHeight',
|
|
tags: ['ol'],
|
|
tooltip: 'Line height',
|
|
list: [1, 1.1, 1.2, 1.3, 1.4, 1.5, 2],
|
|
exec: (editor, event, { control }) => memorizeExec(editor, event, { control }, (value) => value)
|
|
};
|