www

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

commit d06675ae89806b92880a09b7a438c8b849bc148b
parent 12313a6629ff0ea358aeb9e59e6bb44bf4246cbc
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Tue, 24 Jun 2014 16:40:52 -0400

Mark SVG spans as MathJax ones properly.

Diffstat:
Munpacked/jax/output/SVG/jax.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/unpacked/jax/output/SVG/jax.js b/unpacked/jax/output/SVG/jax.js @@ -2059,9 +2059,9 @@ if (svg.H > svg.h || svg.D > svg.d) { var frame = HTML.Element( "span",{style: {display:"inline-block", "white-space":"nowrap", padding:"1px 0px"}, isMathJax:true},[[ - "span",{style: {display:"inline-block", position:"relative", isMathJax:true, + "span",{style: {display:"inline-block", position:"relative", width:SVG.Ex(svg.w), height:SVG.Ex(svg.h+svg.d), - "vertical-align":SVG.Ex(-svg.d)}}]]); + "vertical-align":SVG.Ex(-svg.d)}, isMathJax:true}]]); frame.firstChild.appendChild(svg.element); svg.element = frame; style.verticalAlign = style.margin = ""; style.position = "absolute"; style.bottom = SVG.Ex(svg.d-svg.D); style.left = 0;