Make sure TeXmathchoice saves the SVG data for its core. Resolves issue #604.

This commit is contained in:
Davide P. Cervone 2013-10-09 21:47:36 -04:00
parent 02261ae99f
commit a632d331b1

View File

@ -75,7 +75,11 @@ MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () {
}
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");