Sha256: 70c0b9438aae6f5bc25b9746d849c0743cc890384ea843fdcc8b76676fa52ce3
Contents?: true
Size: 512 Bytes
Versions: 26
Compression:
Stored size: 512 Bytes
Contents
"use strict"; const cssstyle = require("cssstyle"); class ElementCSSInlineStyle { _initElementCSSInlineStyle() { this._settingCssText = false; this._style = new cssstyle.CSSStyleDeclaration(newCssText => { if (!this._settingCssText) { this._settingCssText = true; this.setAttributeNS(null, "style", newCssText); this._settingCssText = false; } }); } get style() { return this._style; } } module.exports = { implementation: ElementCSSInlineStyle };
Version data entries
26 entries across 26 versions & 1 rubygems