commit 22364035fb08668b0eebd57a9e006b304b3c3fb8 parent c101f3877de3a48e1fe75aef4ba40028a8eb7b45 Author: Davide P. Cervone <dpvc@union.edu> Date: Wed, 5 Aug 2015 15:02:59 -0400 Merge branch 'issue1074' into develop. Issue #1074. Diffstat:
| M | unpacked/jax/output/NativeMML/jax.js | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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;