From 2d762625b996d47aebfb3f24c95c51461eafab9a Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Tue, 18 Jan 2011 17:59:42 -0500 Subject: [PATCH] Don't use MathJax_MathContainer when not using Math Menus in MSIE --- unpacked/jax/output/NativeMML/jax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unpacked/jax/output/NativeMML/jax.js b/unpacked/jax/output/NativeMML/jax.js index b551f01fb..8a7823afc 100644 --- a/unpacked/jax/output/NativeMML/jax.js +++ b/unpacked/jax/output/NativeMML/jax.js @@ -53,7 +53,7 @@ var type = (math.Get("display") === "block" ? "div" : "span"); var span = document.createElement(type), container = span; span.className = "MathJax_MathML"; span.style.fontSize = this.config.scale+"%"; - if (isMSIE) { + if (isMSIE && this.config.showMathMenuMSIE) { container = MathJax.HTML.addElement(span,"span",{ className:"MathJax_MathContainer", style:{display:"inline-block",position:"relative"}