Make sure TeXmathchoice saves the SVG data for its core. Resolves issue #604.
This commit is contained in:
parent
02261ae99f
commit
a632d331b1
|
@ -75,7 +75,11 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
|
||||||
}
|
}
|
||||||
return span;
|
return span;
|
||||||
},
|
},
|
||||||
toSVG: function () {return this.Core().toSVG()}
|
toSVG: function () {
|
||||||
|
var svg = this.Core().toSVG();
|
||||||
|
this.SVGsaveData(svg);
|
||||||
|
return svg;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
MathJax.Hub.Startup.signal.Post("TeX mathchoice Ready");
|
MathJax.Hub.Startup.signal.Post("TeX mathchoice Ready");
|
||||||
|
|
Loading…
Reference in New Issue
Block a user