Skip to content

Commit 0ed7629

Browse files
committed
Fix an undeclared variable (notices by the packer).
1 parent 5d69614 commit 0ed7629

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

unpacked/jax/output/HTML-CSS/autoload/multiline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ MathJax.Hub.Register.StartupHook("HTML-CSS Jax Ready",function () {
490490
if (start.length > 1) {
491491
this.data[this.base].HTMLmoveSlice(start.slice(1),end.slice(1),span,state,values,"paddingLeft");
492492
} else {
493-
if (end.length <= 1) {this.data[i].HTMLmoveSpan(span,state,values)}
493+
if (end.length <= 1) {this.data[this.base].HTMLmoveSpan(span,state,values)}
494494
else {this.data[this.base].HTMLmoveSlice([],end.slice(1),span,state,values,"paddingRight")}
495495
}
496496
}

unpacked/jax/output/SVG/autoload/multiline.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ MathJax.Hub.Register.StartupHook("SVG Jax Ready",function () {
445445
if (start.length > 1) {
446446
this.data[this.base].SVGmoveSlice(start.slice(1),end.slice(1),svg,state,values,"paddingLeft");
447447
} else {
448-
if (end.length <= 1) {this.data[i].SVGmove(svg,state,values)}
448+
if (end.length <= 1) {this.data[this.base].SVGmove(svg,state,values)}
449449
else {this.data[this.base].SVGmoveSlice([],end.slice(1),svg,state,values,"paddingRight")}
450450
}
451451
}

0 commit comments

Comments
 (0)