Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Wojciechowski committed Dec 16, 2015
1 parent 1c5a555 commit f1ee84c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/render/draw_fill.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ function draw(painter, source, layer, coords) {
gl.uniform2f(painter.outlineShader.u_world, gl.drawingBufferWidth, gl.drawingBufferHeight);
gl.uniform4fv(painter.outlineShader.u_color, strokeColor ? strokeColor : color);

for (var i = 0; i < coords.length; i++) {
drawStroke(painter, source, layer, coords[i]);
for (var j = 0; j < coords.length; j++) {
drawStroke(painter, source, layer, coords[j]);
}
}
}
Expand Down

0 comments on commit f1ee84c

Please sign in to comment.