www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit ba0fd27250877c3581a73ae9c55e19f958bceca1
parent 412d3669d100beedfcbee06aa43e3422b265a7af
Author: Frédéric Wang <fred.wang@free.fr>
Date:   Fri, 11 Oct 2013 01:15:44 -0700

Merge pull request #606 from dpvc/issue604

Make sure TeXmathchoice saves the SVG data for its core.  Resolves issue...
Diffstat:
Munpacked/extensions/TeX/mathchoice.js | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/unpacked/extensions/TeX/mathchoice.js b/unpacked/extensions/TeX/mathchoice.js @@ -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");