Merge branch 'issue1074' into develop. Issue #1074.

This commit is contained in:
Davide P. Cervone 2015-08-05 15:02:59 -04:00
commit 22364035fb

View File

@ -556,8 +556,8 @@
// Create a MathML element // Create a MathML element
// //
NativeMMLelement: function (type) { NativeMMLelement: function (type) {
var math = (document.createElementNS ? document.createElementNS(nMML.MMLnamespace,type) : var math = ( HUB.Browser.mpNamespace ? document.createElement("m:"+type) :
(HUB.Browser.mpNamespace ? document.createElement("m:"+type) : (document.createElementNS ? document.createElementNS(nMML.MMLnamespace,type) :
document.createElement(type))); document.createElement(type)));
math.isMathJax = true; math.isMathJax = true;
return math; return math;