Fix NativeMMLelement to work with IE8 and below when MathPlayer isn't in place.
This commit is contained in:
parent
dd3da20704
commit
90af9db319
|
@ -556,8 +556,9 @@
|
||||||
// Create a MathML element
|
// Create a MathML element
|
||||||
//
|
//
|
||||||
NativeMMLelement: function (type) {
|
NativeMMLelement: function (type) {
|
||||||
var math = (isMSIE ? document.createElement("m:"+type) :
|
var math = (document.createElementNS ? document.createElementNS(nMML.MMLnamespace,type) :
|
||||||
document.createElementNS(nMML.MMLnamespace,type));
|
(HUB.Browser.mpNamespace ? document.createElement("m:"+type) :
|
||||||
|
document.createElement(type)));
|
||||||
math.isMathJax = true;
|
math.isMathJax = true;
|
||||||
return math;
|
return math;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user