commit 2d762625b996d47aebfb3f24c95c51461eafab9a
parent 5d513b383d81c62bc2da1b55a845419e5e46ef4e
Author: Davide P. Cervone <dpvc@union.edu>
Date: Tue, 18 Jan 2011 17:59:42 -0500
Don't use MathJax_MathContainer when not using Math Menus in MSIE
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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"}