Merge pull request #2677 from mpacer/mjax_labels

clear equation labels on typesetting so that labels don't stop equations from rendering
Grant Nestor 9 years ago committed by GitHub
commit dbda33090f

@ -942,7 +942,10 @@ define([
}
return $el.map(function(){
// MathJax takes a DOM node: $.map makes `this` the context
return MathJax.Hub.Queue(["Typeset", MathJax.Hub, this]);
return MathJax.Hub.Queue(
["Typeset", MathJax.Hub, this],
["resetEquationNumbers",MathJax.InputJax.TeX]
);
});
};

Loading…
Cancel
Save