Make getJaxForMath() work even during chunking. Resolves issue mathjax/MathJax-RespEq#119.
This commit is contained in:
parent
c0c63b1e12
commit
0d192ebf70
|
@ -794,7 +794,7 @@
|
|||
},
|
||||
|
||||
getJaxFromMath: function (math) {
|
||||
if (math.parentNode.className === "MathJax_Display") {math = math.parentNode}
|
||||
if (math.parentNode.className.match(/MathJax_Display/)) {math = math.parentNode}
|
||||
do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script");
|
||||
return HUB.getJaxFor(math);
|
||||
},
|
||||
|
|
|
@ -141,7 +141,7 @@
|
|||
postTranslate: function(state) {},
|
||||
|
||||
getJaxFromMath: function(math) {
|
||||
if (math.parentNode.className === "MathJax_PlainSource_Display") math = math.parentNode;
|
||||
if (math.parentNode.className.match(/MathJax_PlainSource_Display/)) math = math.parentNode;
|
||||
do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script");
|
||||
return HUB.getJaxFor(math);
|
||||
},
|
||||
|
|
|
@ -276,7 +276,7 @@
|
|||
},
|
||||
|
||||
getJaxFromMath: function (math) {
|
||||
if (math.parentNode.className === "MathJax_PHTML_Display") {math = math.parentNode}
|
||||
if (math.parentNode.className.match(/MathJax_PHTML_Display/)) {math = math.parentNode}
|
||||
do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script");
|
||||
return HUB.getJaxFor(math);
|
||||
},
|
||||
|
|
|
@ -413,7 +413,7 @@
|
|||
},
|
||||
|
||||
getJaxFromMath: function (math) {
|
||||
if (math.parentNode.className === "MathJax_SVG_Display") {math = math.parentNode}
|
||||
if (math.parentNode.className.match(/MathJax_SVG_Display/)) {math = math.parentNode}
|
||||
do {math = math.nextSibling} while (math && math.nodeName.toLowerCase() !== "script");
|
||||
return HUB.getJaxFor(math);
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user