UNPKG

devexpress-richedit

Version:

DevExpress Rich Text Editor is an advanced word-processing tool designed for working with rich text documents.

14 lines (13 loc) 553 B
import { AttrUtils } from "@devexpress/utils/lib/utils/attr"; export class AttributeUtils { static changeElementStyleAttribute(obj, attrName, newValue) { AttrUtils.saveStyleAttributeInElement(obj, attrName); AttributeUtils.setStyleAttribute(obj.style, attrName, newValue); } static setStyleAttribute(obj, attrName, newValue) { if (obj.setAttribute) AttrUtils.setElementAttribute(obj, attrName, newValue); else AttrUtils.setStyleAttribute(obj, attrName, newValue); } }