Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Feb 7, 2016
1 parent dbdabcc commit b4e875b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/render/Render.js
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ var Vector = require('../geometry/Vector');
c.beginPath();
c.moveTo(part.vertices[0].x, part.vertices[0].y);

for (j = 1; j < part.vertices.length; j++) {
for (var j = 1; j < part.vertices.length; j++) {
if (!part.vertices[j - 1].isInternal || showInternalEdges) {
c.lineTo(part.vertices[j].x, part.vertices[j].y);
} else {
Expand Down

0 comments on commit b4e875b

Please sign in to comment.