bright-gpu-74537
05/25/2023, 9:09 AMhaxe
private override function set_text(value:String):String {
this.width = null;
this.height = null;
this.element.style.removeProperty("width");
this.element.style.removeProperty("height");
this.element.innerHTML = value;
if (isReady) {
MathJax.typeset();
this.invalidateComponentLayout();
}
return super.set_text(value);
}