Merge pull request #1504 from dpvc/respeq119

Make getJaxForMath() work even during chunking.
This commit is contained in:
Davide P. Cervone 2016-06-06 16:01:56 -04:00
commit 6d689b135a
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);
},