Remove extra space in width (Firefox doesn't process it correctly).

This commit is contained in:
Davide P. Cervone 2014-04-25 12:32:58 -04:00
parent bf9f704e20
commit 7f509db1b5

View File

@ -1490,7 +1490,7 @@
Lap: function (name) {
var mml = MML.mpadded(this.ParseArg(name)).With({width: 0});
if (name === "\\llap") {mml.lspace = "-1 width"}
if (name === "\\llap") {mml.lspace = "-1width"}
this.Push(MML.TeXAtom(mml));
},