Skip to content
This repository was archived by the owner on Jan 4, 2021. It is now read-only.

Commit ee781c2

Browse files
committed
[DEV] Fix var
1 parent 2117fd4 commit ee781c2

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

dist/myscript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5278,7 +5278,7 @@ MyScript = {
52785278
if (obj) {
52795279
for (var i in obj.segments) {
52805280
this.segments.push(new scope.ShapeSegment(obj.segments[i]));
5281-
for(j in this.segments[i].getInkRanges()){
5281+
for(var j in this.segments[i].getInkRanges()){
52825282
this.inkRanges.push(this.segments[i].getInkRanges()[j]);
52835283
}
52845284

dist/myscript.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/myscript.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/output/shape/shapeDocument.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
if (obj) {
1515
for (var i in obj.segments) {
1616
this.segments.push(new scope.ShapeSegment(obj.segments[i]));
17-
for(j in this.segments[i].getInkRanges()){
17+
for(var j in this.segments[i].getInkRanges()){
1818
this.inkRanges.push(this.segments[i].getInkRanges()[j]);
1919
}
2020

0 commit comments

Comments
 (0)