commit a2c3b7cdc29343af99bcbea0ac4d26b3ad9308b0
parent ae48c34e6477425e3693d929c30dfe55dd354f84
Author: Davide P. Cervone <dpvc@union.edu>
Date: Sun, 11 Jan 2015 09:51:17 -0500
Use currentColor rather than black for SVG output. Resolves issue #1002.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unpacked/jax/output/SVG/jax.js b/unpacked/jax/output/SVG/jax.js
@@ -2034,7 +2034,7 @@
var box = BBOX.G(); box.Add(this.data[0].toSVG(),0,0,true); box.Clean();
this.SVGhandleColor(box);
SVG.Element(box.element,{
- stroke:"black", fill:"black", "stroke-width":0,
+ stroke:"currentColor", fill:"currentColor", "stroke-width":0,
transform: "matrix(1 0 0 -1 0 0)"
});
box.removeable = false;