We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1332145 commit c95cb11Copy full SHA for c95cb11
unpacked/jax/output/NativeMML/jax.js
@@ -453,6 +453,8 @@
453
jax.root.toNativeMML(span);
454
if (this.msieIE8HeightBug) {span.style.position = "absolute"}
455
if (nMML.widthBug) {span.style.width = span.parentNode.style.width = ""}
456
+ if (span.parentNode.style.width.match(/%$/))
457
+ {span.parentNode.style.minWidth = Math.ceil(3*Mh/4)+"px"} // for full-width tables
458
var mW = math.offsetWidth || math.scrollWidth,
459
mH = math.offsetHeight || math.scrollHeight;
460
var zW = span.offsetWidth, zH = span.offsetHeight;
0 commit comments