jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
32 lines (31 loc) • 1.05 kB
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
*/
/**
* @module plugins/image-properties
*/
import { kebabCase } from "../../../core/helpers/string/kebab-case.js";
/** @private */
export function readMargins(image, values, state) {
// Margins
let equal = true, wasEmptyField = false;
['marginTop', 'marginRight', 'marginBottom', 'marginLeft'].forEach(id => {
let value = image.style.getPropertyValue(kebabCase(id));
if (!value) {
wasEmptyField = true;
values[id] = 0;
return;
}
if (/^[0-9]+(px)?$/.test(value)) {
value = parseInt(value, 10);
}
values[id] = value;
if ((wasEmptyField && values[id]) ||
(equal && id !== 'marginTop' && values[id] !== values.marginTop)) {
equal = false;
}
});
state.marginIsLocked = equal;
}