Fix incorrect TeX class for \buildrel. Resolves issue #900.

This commit is contained in:
Davide P. Cervone 2014-08-28 19:04:33 -04:00
parent d5d1fbdf50
commit 302e28cd38

View File

@ -1546,7 +1546,7 @@
BuildRel: function (name) {
var top = this.ParseUpTo(name,"\\over");
var bot = this.ParseArg(name);
this.Push(MML.TeXAtom(MML.munderover(bot,null,top)).With({mclass: MML.TEXCLASS.REL}));
this.Push(MML.TeXAtom(MML.munderover(bot,null,top)).With({texClass: MML.TEXCLASS.REL}));
},
HBox: function (name,style) {