Make href class specific to SVG (in case we need to have one for other output jax)

This commit is contained in:
Davide P. Cervone 2013-04-17 09:05:24 -04:00
parent 557e93e505
commit 486cd40424

View File

@ -60,7 +60,7 @@
width: "100%"
},
".mjx-href": {
".mjx-svg-href": {
fill: "blue", stroke: "blue"
},
@ -1027,10 +1027,10 @@
// for svg element, put <a> inside the main <g> element
var g = svg.element.firstChild;
while (g.firstChild) {a.appendChild(g.firstChild)}
g.appendChild(a); this.SVGaddClass(g,"mjx-href");
g.appendChild(a); this.SVGaddClass(g,"mjx-svg-href");
g.removeAttribute("fill"); g.removeAttribute("stroke");
} else {
this.SVGaddClass(svg.element,"mjx-href");
this.SVGaddClass(svg.element,"mjx-svg-href");
a.appendChild(svg.element); svg.element = a;
}
svg.removeable = false;