Reset message strings for messageStyle=simple for each typeset operation. Resolves issue #1428

This commit is contained in:
Davide P. Cervone 2016-05-04 08:36:02 -04:00
parent 5fc8bc2add
commit c2c5d8af17

View File

@ -1711,6 +1711,12 @@ MathJax.Message = {
return text;
},
clearCounts: function () {
delete this.loading;
delete this.processing;
delete this.typesetting;
},
Set: function (text,n,clearDelay) {
if (n == null) {n = this.log.length; this.log[n] = {}}
//
@ -2116,6 +2122,7 @@ MathJax.Hub = {
},
prepareScripts: function (action,element,state) {
MathJax.Message.clearCounts();
if (arguments.callee.disabled) return;
var scripts = this.elementScripts(element);
var STATE = MathJax.ElementJax.STATE;