commit af2ae01e9b58d3bef8a992a06d39e04600543f28
parent 9025855ce2ec6b81dc12e1c72822abad8715f92a
Author: Davide P. Cervone <dpvc@union.edu>
Date: Sun, 9 Sep 2012 07:04:19 -0400
Fix problem with SVG output disappearing during line breaks when equation numbers are also present. Resolves issue #296
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unpacked/jax/output/SVG/autoload/multiline.js b/unpacked/jax/output/SVG/autoload/multiline.js
@@ -188,7 +188,7 @@ MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () {
// fill it with the proper elements,
// and clean up the bbox
//
- line = BBOX();
+ var line = BBOX();
state.first = broken; state.last = true;
this.SVGmoveLine(start,end,line,state,values);
line.Clean();