www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d6939060edba1491b35ab4f76baa74d58671ad2e
parent 0420fc6f0787268a773f61a236b023a1430c90f5
Author: Davide P. Cervone <dpvc@union.edu>
Date:   Fri, 16 Jan 2015 08:58:26 -0500

Don't produce error for empty annotation in CommonHTML output. (Issue #805)

Diffstat:
Munpacked/jax/output/CommonHTML/jax.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unpacked/jax/output/CommonHTML/jax.js b/unpacked/jax/output/CommonHTML/jax.js @@ -1126,7 +1126,7 @@ span = this.CHTMLcreateSpan(span); if (this.data[0]) { this.data[0].toCommonHTML(span); - this.CHTML = this.data[0].CHTML; + MathJax.Hub.Insert(this.data[0].CHTML||{},this.CHTML); } return span; }