Make getJaxForMath() work even during chunking. Resolves issue mathjax/MathJax-RespEq#119.

This commit is contained in:
Davide P. Cervone 2016-06-06 07:41:18 -04:00
parent c0c63b1e12
commit 0d192ebf70
4 changed files with 4 additions and 4 deletions

View File

@ -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);
},

View File

@ -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);
},

View File

@ -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);
},

View File

@ -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);
},