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 681405d commit 1cc5064Copy full SHA for 1cc5064
unpacked/jax/output/NativeMML/jax.js
@@ -594,7 +594,7 @@
594
if (this.data[this.over] == null) {type = "munder"}
595
var tag = this.NativeMMLelement(type);
596
this.NativeMMLattributes(tag);
597
- delete this.data[0].inferred;
+ if (this.data[0]) {delete this.data[0].inferred}
598
for (var i = 0, m = this.data.length; i < m; i++)
599
{if (this.data[i]) {this.data[i].toNativeMML(tag)}}
600
parent.appendChild(tag);
@@ -746,7 +746,7 @@
746
}
747
748
749
- if (nMML.tableLabelBug) {
+ if (nMML.tableLabelBug && this.data[0]) {
750
var side = this.parent.Get("side").charAt(0),
751
align = HUB.config.displayAlign.charAt(0),
752
indent = HUB.config.displayIndent;
0 commit comments