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 afb499f commit bebef63Copy full SHA for bebef63
unpacked/jax/output/CommonHTML/jax.js
@@ -1415,8 +1415,13 @@
1415
if (!options.noBBox) {
1416
var bbox = this.CHTML, cbox = child.CHTML;
1417
bbox.append(cbox);
1418
- if (cbox.ic) {bbox.ic = cbox.ic} else {delete bbox.ic}
1419
- if (cbox.skew) bbox.skew = cbox.skew;
+ if (this.data.length === 1) {
+ if (cbox.ic) bbox.ic = cbox.ic;
1420
+ if (cbox.skew) bbox.skew = cbox.skew;
1421
+ } else {
1422
+ delete bbox.ic;
1423
+ delete bbox.skew;
1424
+ }
1425
if (cbox.pwidth) bbox.pwidth = cbox.pwidth;
1426
}
1427
} else if (options.forceChild) {
0 commit comments