www

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

commit 0c8fdca0e6789aeeeb32bb2e89dca8f117785b6a
parent bcceb085909ba22f35d18ccfd919cb508617751d
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Mon, 10 Feb 2014 08:37:53 -0500

Remove unneeded space in class name.

Diffstat:
Munpacked/jax/output/SVG/jax.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unpacked/jax/output/SVG/jax.js b/unpacked/jax/output/SVG/jax.js @@ -1485,7 +1485,7 @@ if (variant.italic) {def["font-style"] = "italic"} variant = this.Get("mathvariant"); if (variant === "monospace") {def["class"] = "MJX-monospace"} - else if (variant.match(/sans-serif/)) {def["class"] = " MJX-sans-serif"} + else if (variant.match(/sans-serif/)) {def["class"] = "MJX-sans-serif"} svg.Add(BBOX.TEXT(scale,this.data.join(""),def)); svg.Clean(); this.SVGhandleColor(svg); this.SVGsaveData(svg);