Fix problem with identifying display math due to change from looking of frame to using previousSibling.

This commit is contained in:
Davide P. Cervone 2016-08-18 10:16:03 -04:00
parent f6c72b41d6
commit dd2ac513ce
2 changed files with 4 additions and 4 deletions

View File

@ -683,8 +683,8 @@
// Get the data about the math
//
var jax = script.MathJax.elementJax, math = jax.root,
span = script.previousSibling;
div = (jax.HTMLCSS.display ? (span||{}).parentNode : span);
div = script.previousSibling;
span = (jax.HTMLCSS.display ? (div||{}).firstChild||div : div);
if (!div) return;
//
// Set the font metrics

View File

@ -315,8 +315,8 @@
// Get the data about the math
//
var jax = script.MathJax.elementJax, math = jax.root,
span = script.previousSibling;
div = (jax.SVG.display ? (span||{}).parentNode : span),
div = script.previousSibling;
span = (jax.SVG.display ? (div||{}).firstChild||div : div),
localCache = (SVG.config.useFontCache && !SVG.config.useGlobalCache);
if (!div) return;
//