Skip to content

Commit 7ec37f6

Browse files
committed
One more fix for CommonHTML full-width tables (undoes an incorrect change in 0e9f51f
1 parent b3530d6 commit 7ec37f6

File tree

1 file changed

+1
-2
lines changed
  • unpacked/jax/output/CommonHTML

1 file changed

+1
-2
lines changed

unpacked/jax/output/CommonHTML/jax.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1755,8 +1755,7 @@
17551755
node.parentNode.style.minWidth = this.CHTML.mwidth||CHTML.Em(this.CHTML.w);
17561756
node.parentNode.className = "mjx-full-width "+node.parentNode.className;
17571757
node.style.width = this.CHTML.pwidth;
1758-
}
1759-
if (!this.isMultiline && this.Get("display") === "block") {
1758+
} else if (!this.isMultiline && this.Get("display") === "block") {
17601759
var values = this.getValues("indentalignfirst","indentshiftfirst","indentalign","indentshift");
17611760
if (values.indentalignfirst !== MML.INDENTALIGN.INDENTALIGN) values.indentalign = values.indentalignfirst;
17621761
if (values.indentalign === MML.INDENTALIGN.AUTO) values.indentalign = CONFIG.displayAlign;

0 commit comments

Comments
 (0)