Fix problem with taking style of null element reported by Fred in issue #210.
This commit is contained in:
parent
2f8a30a362
commit
42998e00e5
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -1015,7 +1015,7 @@
|
||||||
svg.element.setAttribute("className","mjx-svg-"+this.type);
|
svg.element.setAttribute("className","mjx-svg-"+this.type);
|
||||||
}
|
}
|
||||||
var style = this.Get("style");
|
var style = this.Get("style");
|
||||||
if (style) {
|
if (style && svg.element) {
|
||||||
svg.element.style.cssText = style;
|
svg.element.style.cssText = style;
|
||||||
if (svg.element.style.fontSize) {svg.element.style.fontSize = ""} // handled by scale
|
if (svg.element.style.fontSize) {svg.element.style.fontSize = ""} // handled by scale
|
||||||
svg.element.style.border = svg.element.style.padding = "";
|
svg.element.style.border = svg.element.style.padding = "";
|
||||||
|
@ -1430,7 +1430,9 @@
|
||||||
}
|
}
|
||||||
this.SVGhandleColor(svg);
|
this.SVGhandleColor(svg);
|
||||||
if (!svg.element.firstChild) {delete svg.element}
|
if (!svg.element.firstChild) {delete svg.element}
|
||||||
|
console.log("6");
|
||||||
this.SVGsaveData(svg);
|
this.SVGsaveData(svg);
|
||||||
|
console.log("7");
|
||||||
return svg;
|
return svg;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user