Skip to content

Commit d693906

Browse files
committed
Don't produce error for empty annotation in CommonHTML output. (Issue #805)
1 parent 0420fc6 commit d693906

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

unpacked/jax/output/CommonHTML/jax.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1126,7 +1126,7 @@
11261126
span = this.CHTMLcreateSpan(span);
11271127
if (this.data[0]) {
11281128
this.data[0].toCommonHTML(span);
1129-
this.CHTML = this.data[0].CHTML;
1129+
MathJax.Hub.Insert(this.data[0].CHTML||{},this.CHTML);
11301130
}
11311131
return span;
11321132
}

0 commit comments

Comments
 (0)