Skip to content

Commit 8599abb

Browse files
committed
Mark the postTranslate call that does chunk updates as a partial one
1 parent 81ed447 commit 8599abb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unpacked/jax/output/SVG/jax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,14 +319,14 @@
319319
//
320320
state.SVGeqn += (state.i - state.SVGi); state.SVGi = state.i;
321321
if (state.SVGeqn >= state.SVGlast + state.SVGchunk) {
322-
this.postTranslate(state);
322+
this.postTranslate(state,true);
323323
state.SVGchunk = Math.floor(state.SVGchunk*this.config.EqnChunkFactor);
324324
state.SVGdelay = true; // delay if there are more scripts
325325
}
326326
}
327327
},
328328

329-
postTranslate: function (state) {
329+
postTranslate: function (state,partial) {
330330
var scripts = state.jax[this.id];
331331
if (!this.hideProcessedMath) return;
332332
//

0 commit comments

Comments
 (0)