diff --git a/unpacked/jax/output/NativeMML/jax.js b/unpacked/jax/output/NativeMML/jax.js index 63d8e2e84..3c6f7c289 100644 --- a/unpacked/jax/output/NativeMML/jax.js +++ b/unpacked/jax/output/NativeMML/jax.js @@ -556,8 +556,8 @@ // Create a MathML element // NativeMMLelement: function (type) { - var math = (document.createElementNS ? document.createElementNS(nMML.MMLnamespace,type) : - (HUB.Browser.mpNamespace ? document.createElement("m:"+type) : + var math = ( HUB.Browser.mpNamespace ? document.createElement("m:"+type) : + (document.createElementNS ? document.createElementNS(nMML.MMLnamespace,type) : document.createElement(type))); math.isMathJax = true; return math;