Reset message strings for messageStyle=simple for each typeset operation. Resolves issue #1428
This commit is contained in:
parent
5fc8bc2add
commit
c2c5d8af17
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user