Adjust how options are handled, as per Volker's comments.

This commit is contained in:
Davide P. Cervone 2016-07-26 14:59:41 -04:00
parent ba22166399
commit 38a9a12dcf

View File

@ -2602,6 +2602,7 @@
MML.mrow.Augment({
toCommonHTML: function (node,options) {
options = options || {};
node = this.CHTMLdefaultNode(node);
var bbox = this.CHTML, H = bbox.h, D = bbox.d, hasNegative;
for (var i = 0, m = this.data.length; i < m; i++) {
@ -2610,7 +2611,7 @@
}
if (this.CHTMLlineBreaks()) {
this.CHTMLmultiline(node);
if ((options||{}).autowidth) node.style.width = "";
if (options.autowidth) node.style.width = "";
} else {
if (hasNegative && bbox.w) node.style.width = CHTML.Em(Math.max(0,bbox.w));
if (bbox.w < 0) node.style.marginRight = CHTML.Em(bbox.w);