Make href class specific to SVG (in case we need to have one for other output jax)
This commit is contained in:
parent
557e93e505
commit
486cd40424
|
@ -60,7 +60,7 @@
|
||||||
width: "100%"
|
width: "100%"
|
||||||
},
|
},
|
||||||
|
|
||||||
".mjx-href": {
|
".mjx-svg-href": {
|
||||||
fill: "blue", stroke: "blue"
|
fill: "blue", stroke: "blue"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1027,10 +1027,10 @@
|
||||||
// for svg element, put <a> inside the main <g> element
|
// for svg element, put <a> inside the main <g> element
|
||||||
var g = svg.element.firstChild;
|
var g = svg.element.firstChild;
|
||||||
while (g.firstChild) {a.appendChild(g.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");
|
g.removeAttribute("fill"); g.removeAttribute("stroke");
|
||||||
} else {
|
} else {
|
||||||
this.SVGaddClass(svg.element,"mjx-href");
|
this.SVGaddClass(svg.element,"mjx-svg-href");
|
||||||
a.appendChild(svg.element); svg.element = a;
|
a.appendChild(svg.element); svg.element = a;
|
||||||
}
|
}
|
||||||
svg.removeable = false;
|
svg.removeable = false;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user